Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

drf-account

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

drf-account

Accounts APP for Django REST Framework with API Views

  • 0.0.2
  • PyPI
  • Socket score

Maintainers
1

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

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc