Skip to main content

Feedback APP for Django REST Framework with API Views.

Project description

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:

Installation

  • Download and Install via pip
pip install drf_feedback

or
Download and Install via easy_install

easy_install drf_feedback
  • Add drf_feedback in INSTALLED_APPS
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

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_feedback-0.0.3.tar.gz (4.2 kB view hashes)

Uploaded Source

Built Distribution

drf_feedback-0.0.3-py3-none-any.whl (6.1 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