Feedback APP for Django REST Framework with API Views.
Project description
DRF Feedback
Feedback APP for Django REST Framework with API Views.
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.
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.
Installation
- Download and Install via
pip
pip install drf_feedback
or
Download and Install via easy_install
easy_install drf_feedback
- Add
drf_feedback
inINSTALLED_APPS
INSTALLED_APPS = [
...
'drf_feedback',
...
]
- Include urls of
drf_feedback
inurls.py
urlpatterns = [
...
path('feedback/', include('drf_feedback.urls')),
...
]
# or
urlpatterns = [
...
url(r'feedback/', include('drf_feedback.urls')),
...
]
- Finally, run
migrate
command
python manage.py migrate drf_feedback
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
drf_feedback-0.0.2.tar.gz
(3.8 kB
view hashes)
Built Distribution
Close
Hashes for drf_feedback-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dc0f0d007a40c478a0c6d530b47b92c4eb2d9f6341dee0d55d774deff6ede4e2 |
|
MD5 | fce84eef15bd19f08e6bd34b6ceaa136 |
|
BLAKE2b-256 | bf409525c5d15b9494cf86ae5f3e0d93e920510773355c9f677c933c863ec1ae |