Django REST Framework - 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.
Contributors:
- Civil Machines Technologies Private Limited: For providing platform and funds
for research work. This project is hosted currently with
CMTonly. - Himanshu Shankar: Ideation, modification & Quality Assurance in the app.
- Mahen Gandhi: Developed this app from scratch.
- Aditya Gupta: Testing, Modification suggestions & intial works. This app is inspire his work in live project of Hisab Kitab
Installation
- Download and Install via
pip
pip install drf_feedback
or
Download and Install via easy_install
easy_install drf_feedback
- Add
drf_feedbackinINSTALLED_APPS
INSTALLED_APPS = [
...
'drf_feedback',
...
]
- Include urls of
drf_feedbackinurls.py
urlpatterns = [
...
path('feedback/', include('feedback.urls')),
...
]
# or
urlpatterns = [
...
url(r'feedback/', include('feedback.urls')),
...
]
- Finally, run
migratecommand
python manage.py migrate drf_feedback
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.3.tar.gz
(4.2 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file drf_feedback-0.0.3.tar.gz.
File metadata
- Download URL: drf_feedback-0.0.3.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d416300708d1393c07ce8021b8b32d99ac1b5d173621cf1946544b822a22a5eb
|
|
| MD5 |
ee367778564f273afdb16755b3d57324
|
|
| BLAKE2b-256 |
e03062b09e4e7e13a76fa0e68fecd304f61a542299db8e5e0a7cc5542012a81f
|
File details
Details for the file drf_feedback-0.0.3-py3-none-any.whl.
File metadata
- Download URL: drf_feedback-0.0.3-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b6a42e8aab42bdd8602930e0df5551e8809796a1d75c2209ca21e6fe069aa1e
|
|
| MD5 |
a46f903deac147122516725fb3b3dca6
|
|
| BLAKE2b-256 |
fb9ee557f4adc2974b63d1561643ef2935b378a8c692079f9504137ae0e71354
|