You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

fyle-accounting-mappings

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fyle-accounting-mappings

Django application to store the fyle accounting mappings in a generic manner

2.5.6
pipPyPI
Maintainers
1

Fyle Accounting Mappings

Installation and Usage

Backend infra to support all kinds of mappings in Fyle Accounting Integrations

$ pip install fyle-accounting-mappings

In Django settings.py -

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',

    # Installed Apps
    'rest_framework',
    'corsheaders',
    'fyle_rest_auth', # already existing reusable django app for authentication
    'fyle_accounting_mappings', # new mapping infra app

    # User Created Apps
    'apps.users',
    'apps.workspaces',
    'apps.mappings',
    'apps.fyle',
    'apps.quickbooks_online',
    'apps.tasks'
]

Run migrations -

$ python manage.py migrate

To use -

from fyle_accounting_mappings.models import MappingSetting, Mapping, ExpenseTag, DestinationTag

# Operations with DB

Keywords

fyle

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts