├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── docs ├── index.md └── mkdocs.yml ├── json_views ├── __init__.py └── views.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── encoding_tests.py ├── fixtures ├── data-py2.json ├── data-py3.json ├── pretty-data-py2.json └── pretty-data-py3.json └── views_tests.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/docs/mkdocs.yml -------------------------------------------------------------------------------- /json_views/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/json_views/__init__.py -------------------------------------------------------------------------------- /json_views/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/json_views/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/encoding_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/tests/encoding_tests.py -------------------------------------------------------------------------------- /tests/fixtures/data-py2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/tests/fixtures/data-py2.json -------------------------------------------------------------------------------- /tests/fixtures/data-py3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/tests/fixtures/data-py3.json -------------------------------------------------------------------------------- /tests/fixtures/pretty-data-py2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/tests/fixtures/pretty-data-py2.json -------------------------------------------------------------------------------- /tests/fixtures/pretty-data-py3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/tests/fixtures/pretty-data-py3.json -------------------------------------------------------------------------------- /tests/views_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bbengfort/django-generic-json-views/HEAD/tests/views_tests.py --------------------------------------------------------------------------------