Skip to main content

Contact APP for Django REST Framework with API Views.

Project description

Django REST Framework Contact

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:

Installation

  • Download and Install via pip
pip install drf_contact

or
Download and Install via easy_install

easy_install drf_contact
  • Add drf_contact in INSTALLED_APPS
INSTALLED_APPS = [
    ...
    'drf_contact',
    ...
]
  • Include urls of drf_contact in urls.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

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_contact-0.0.2.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

drf_contact-0.0.2-py3-none-any.whl (6.5 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