Contact App for Django REST Framework with API Views.
Django REST Framework - Contact
is a Django App for creating user contacts. 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. - Aditya Gupta: Project Developer. Developed & maintained the code. Author of the project.
- Himanshu Shankar: Ideation & Project Manager. Currently maintaining the project
- Download and Install via
pip
pip install drf_contact
or
Download and Install via easy_install
easy_install drf_contact
- Add
drf_contact
inINSTALLED_APPS
INSTALLED_APPS = [
...
'drf_contact',
...
]
- Include urls of
drf_contact
inurls.py
urlpatterns = [
...
path('api/contact/', include('drf_contact.urls')),
...
]
# or
urlpatterns = [
...
url(r'^api/contact/', include('drf_contact.urls')),
...
]
- Finally, run
migrate
command
python manage.py migrate drf_contact