├── .coveragerc ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── preserialize ├── __init__.py ├── serialize.py └── utils.py ├── setup.py ├── test_suite.py ├── tests ├── __init__.py ├── models.py ├── settings.py └── tests.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.py? 2 | *.sw? 3 | dist 4 | MANIFEST 5 | *.egg-info 6 | .coverage 7 | .tox 8 | build/ 9 | test.db 10 | six*/ 11 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/README.md -------------------------------------------------------------------------------- /preserialize/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/preserialize/__init__.py -------------------------------------------------------------------------------- /preserialize/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/preserialize/serialize.py -------------------------------------------------------------------------------- /preserialize/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/preserialize/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/setup.py -------------------------------------------------------------------------------- /test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/test_suite.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/tests/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bruth/django-preserialize/HEAD/tox.ini --------------------------------------------------------------------------------