Metadata-Version: 2.1
Name: drf-contact
Version: 0.0.2
Summary: Contact APP for Django REST Framework with API Views.
Home-page: https://github.com/civilmachines/drf-contact
Author: Civil Machines Technologies Private Limited
Author-email: pypidev@civilmachines.com
License: GPLv3
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.10
Classifier: Framework :: Django :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Internet :: WWW/HTTP
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Description-Content-Type: text/markdown
Requires-Dist: Django (>=2.0.7)
Requires-Dist: django-filter (>=1.1.0)
Requires-Dist: djangorestframework (>=3.8.2)
Requires-Dist: drfaddons (>=0.0.1)
Requires-Dist: pytz (>=2018.5)

# Django REST Framework Contact

**Contact App for Django REST Framework with API Views.**<br>

`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](https://github.com/civilmahines)**: For providing me platform and
funds for research work. This project is hosted currently with `CMT` only.
- [Aditya Gupta](https://github.com/ag93999): Project Developer. Developed & maintained the code. Author of the project.
- [Himanshu Shankar](https://github.com/iamhssingh): Ideation & Project Manager. Currently maintaining the project

#### Installation

- Download and Install via `pip`
```
pip install drf_contact
```
or<br>
Download and Install via `easy_install`
```
easy_install drf_contact
```
- Add `drf_contact` in `INSTALLED_APPS`<br>
```
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
```

