├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── jsonbfield ├── __init__.py ├── fields.py ├── forms.py ├── models.py └── tests.py ├── setup.py └── testsettings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearstCorp/django-jsonbfield/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearstCorp/django-jsonbfield/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.rst 2 | -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearstCorp/django-jsonbfield/HEAD/README.rst -------------------------------------------------------------------------------- /jsonbfield/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /jsonbfield/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearstCorp/django-jsonbfield/HEAD/jsonbfield/fields.py -------------------------------------------------------------------------------- /jsonbfield/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearstCorp/django-jsonbfield/HEAD/jsonbfield/forms.py -------------------------------------------------------------------------------- /jsonbfield/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearstCorp/django-jsonbfield/HEAD/jsonbfield/models.py -------------------------------------------------------------------------------- /jsonbfield/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearstCorp/django-jsonbfield/HEAD/jsonbfield/tests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearstCorp/django-jsonbfield/HEAD/setup.py -------------------------------------------------------------------------------- /testsettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HearstCorp/django-jsonbfield/HEAD/testsettings.py --------------------------------------------------------------------------------