Metadata-Version: 2.0
Name: django-rest-survey
Version: 1.0.25
Summary: Dynamic and custom surveys for any objects in your database
Home-page: https://github.com/george-silva/django-rest-survey
Author: George Silva
Author-email: george@sigmageosistemas.com.br
License: MIT
Keywords: django-rest-survey
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Django
Classifier: Framework :: Django :: 1.8
Classifier: Framework :: Django :: 1.9
Classifier: Framework :: Django :: 1.10
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: django
Requires-Dist: django-appconf
Requires-Dist: django-common-models
Requires-Dist: django-mptt
Requires-Dist: django-ordered-model
Requires-Dist: djangorestframework
Requires-Dist: djangorestframework-filters
Requires-Dist: jsonfield

=============================
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.


