Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

django-rest-survey

Package Overview
Dependencies
Maintainers
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-rest-survey

Dynamic and custom surveys for any objects in your database

  • 1.0.26
  • PyPI
  • Socket score

Maintainers
2

============================= Django REST Survey

.. image:: https://badge.fury.io/py/django-rest-survey.svg :target: https://badge.fury.io/py/django-rest-survey

.. image:: https://travis-ci.org/george-silva/django-rest-survey.svg?branch=master :target: https://travis-ci.org/george-silva/django-rest-survey

.. image:: https://codecov.io/gh/george-silva/django-rest-survey/branch/master/graph/badge.svg :target: https://codecov.io/gh/george-silva/django-rest-survey

Dynamic and custom surveys for any objects in your database

Documentation

The full documentation is at https://django-rest-survey.readthedocs.io.

Quickstart

Install Django REST Survey::

pip install django-rest-survey

Add it to your INSTALLED_APPS:

.. code-block:: python

INSTALLED_APPS = (
    ...
    'rest_survey.apps.RestSurveyConfig',
    ...
)

Add Django REST Survey's URL patterns:

.. code-block:: python

from rest_survey import urls as rest_survey_urls


urlpatterns = [
    ...
    url(r'^', include(rest_survey_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

::

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

  • Cookiecutter_
  • cookiecutter-djangopackage_

.. _Cookiecutter: https://github.com/audreyr/cookiecutter .. _cookiecutter-djangopackage: https://github.com/pydanny/cookiecutter-djangopackage

History

0.1.0 (2017-06-06) ++++++++++++++++++

  • First release on PyPI.

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc