drf-account

Accounts APP for Django REST Framework with API Views


Keywords
django, django-application, django-rest-api, django-rest-framework, django-rest-framework-addon
License
GPL-3.0
Install
pip install drf-account==0.0.2

Documentation

Django REST Framework - Account

Account APP for Django REST Framework with API Views.

DRF Account is a Django app that for maintaining Account Information. This app is majorly being used in Vitartha's product Hisab Kitab

Contributors

  • Civil Machines Technologies Private Limited: For providing me platform and funds for research work. This project is hosted currently with CMT only.
  • Himanshu Shankar: The app was initiated and worked upon majorly by Himanshu. This app is currently in use in various other django projects that are developed by him.

We're looking for someone who can contribute on docs part

Installation

  • Download and Install via pip
pip install drf_account

or
Download and Install via easy_install

easy_install drf_account
  • Add drf_account in INSTALLED_APPS
INSTALLED_APPS = [
    ...
    'drf_account',
    ...
]
  • Include urls of drf_account in urls.py
urlpatterns = [
    ...
    path('/api/account/', include('drf_account.urls')),
    ...
]

# or

urlpatterns = [
    ...
    url(r'api/account/', include('drf_account.urls')),
    ...
]
  • Finally, run migrate command
python manage.py migrate drf_account