Skip to main content

Transaction APP for Django REST Framework with API Views

Project description

Django REST Framework Transaction

Transaction APP for Django REST Framework with API Views.

DRF Transaction is a Django App that can for collecting feedback from end user. It's view are based upon Django REST Framework's GenericAPIView and hence it contains a RESTful API views also.

I'll like to mention following names for certain contributions:

  • Civil Machines Technologies Private Limited: For providing me platform and funds for research work. This project is hosted currently with CMT only.
  • Himanshu Shankar: For guiding me and providing me mentorship while doing this project.
  • Aditya Gupta: For updating this repository and projects using this repository as per the latest standards and making this repository into a library. At the time of this commit, he is an intern with CMT and is assigned with the task of building this app and making this as a Python Package hosted on PyPi.

Installation

  • Download and Install via pip
pip install drf_transaction

or
Download and Install via easy_install

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

# or

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

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

drf_transaction-0.0.2.tar.gz (6.0 kB view hashes)

Uploaded Source

Built Distribution

drf_transaction-0.0.2-py3-none-any.whl (8.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page