Socket
Socket
Sign inDemoInstall

fyle-accounting-mappings

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

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


Maintainers
1

Readme

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

FAQs


Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc