├── .editorconfig ├── .gitignore ├── CHANGELOG.rst ├── LICENSE ├── LICENSE_EXCEPTION ├── MANIFEST.in ├── README.rst ├── demo ├── __init__.py ├── settings.py ├── templates │ ├── base.html │ ├── form.html │ └── index.html ├── urls.py └── users │ ├── __init__.py │ ├── admin.py │ ├── migrations │ ├── 0001_initial.py │ └── __init__.py │ └── models.py ├── jsonstore ├── __init__.py ├── fields.py └── queryset.py ├── manage.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── apps.py ├── fields │ ├── __init__.py │ ├── test_boolean_field.py │ ├── test_char_field.py │ ├── test_date_field.py │ ├── test_datetime_field.py │ ├── test_nullbooleanfield.py │ └── test_time_field.py ├── models.py ├── settings.py ├── templates │ └── index.html ├── test_json_field.py ├── test_model_api.py ├── test_model_form.py ├── test_query_api.py └── urls.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_EXCEPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/LICENSE_EXCEPTION -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/README.rst -------------------------------------------------------------------------------- /demo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/demo/settings.py -------------------------------------------------------------------------------- /demo/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/demo/templates/base.html -------------------------------------------------------------------------------- /demo/templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/demo/templates/form.html -------------------------------------------------------------------------------- /demo/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/demo/templates/index.html -------------------------------------------------------------------------------- /demo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/demo/urls.py -------------------------------------------------------------------------------- /demo/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/demo/users/admin.py -------------------------------------------------------------------------------- /demo/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/demo/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /demo/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/demo/users/models.py -------------------------------------------------------------------------------- /jsonstore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/jsonstore/__init__.py -------------------------------------------------------------------------------- /jsonstore/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/jsonstore/fields.py -------------------------------------------------------------------------------- /jsonstore/queryset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/jsonstore/queryset.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/manage.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/apps.py -------------------------------------------------------------------------------- /tests/fields/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fields/test_boolean_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/fields/test_boolean_field.py -------------------------------------------------------------------------------- /tests/fields/test_char_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/fields/test_char_field.py -------------------------------------------------------------------------------- /tests/fields/test_date_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/fields/test_date_field.py -------------------------------------------------------------------------------- /tests/fields/test_datetime_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/fields/test_datetime_field.py -------------------------------------------------------------------------------- /tests/fields/test_nullbooleanfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/fields/test_nullbooleanfield.py -------------------------------------------------------------------------------- /tests/fields/test_time_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/fields/test_time_field.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/templates/index.html -------------------------------------------------------------------------------- /tests/test_json_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/test_json_field.py -------------------------------------------------------------------------------- /tests/test_model_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/test_model_api.py -------------------------------------------------------------------------------- /tests/test_model_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/test_model_form.py -------------------------------------------------------------------------------- /tests/test_query_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/test_query_api.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/viewflow/jsonstore/HEAD/tox.ini --------------------------------------------------------------------------------