Metadata-Version: 2.1
Name: drf-feedback
Version: 0.0.3
Summary: Feedback APP for Django REST Framework with API Views.
Home-page: https://github.com/civilmachines/drf-feedback
Author: Civil Machines Technologies Private Limited
Author-email: pypidev@civilmachines.com
License: GPLv3
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
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.5)
Requires-Dist: PyJWT (<=1.6.4)
Requires-Dist: djangorestframework-jwt (<=1.11.0)
Requires-Dist: djangorestframework (<=3.8.2)
Requires-Dist: drfaddons (<=0.0.2)
Requires-Dist: pytz (<=2018.4)

# Django REST Framework - Feedback

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

`DRF Feedback` 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.


#### Contributors: 
- **[Civil Machines Technologies Private Limited](https://github.com/civilmahines)**: For providing platform and funds
for research work. This project is hosted currently with `CMT` only. 
- [Himanshu Shankar](https://github.com/iamhssingh): Ideation, modification & Quality Assurance in the app.
- [Mahen Gandhi](https://github.com/imlegend19): Developed this app from scratch. 
- [Aditya Gupta](https://github.com/ag93999): Testing, Modification suggestions & intial works. This app is inspire 
his work in live project of [Hisab Kitab](https://hisabkitab.in) 

#### Installation

- Download and Install via `pip`
```
pip install drf_feedback
```
or<br>
Download and Install via `easy_install`
```
easy_install drf_feedback
```
- Add `drf_feedback` in `INSTALLED_APPS`<br>
```
INSTALLED_APPS = [
    ...
    'drf_feedback',
    ...
]
```
- Include urls of `drf_feedback` in `urls.py`
```
urlpatterns = [
    ...
    path('feedback/', include('feedback.urls')),
    ...
]

# or

urlpatterns = [
    ...
    url(r'feedback/', include('feedback.urls')),
    ...
]
```

- Finally, run `migrate` command
```
python manage.py migrate drf_feedback
```


