├── .github ├── CODEOWNERS.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── css │ └── extra.css └── index.md ├── manage.py ├── mkdocs.yml ├── pytest.ini ├── requirements.txt ├── rest_framework_transforms ├── __init__.py ├── exceptions.py ├── parsers.py ├── serializers.py ├── transforms.py └── utils.py ├── runtests.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── actual_tests.py ├── conftest.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── test_parsers.py ├── test_serializers.py └── test_transforms.py └── tox.ini /.github/CODEOWNERS.md: -------------------------------------------------------------------------------- 1 | * @mrhwick 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | # High-Level Description 2 | 3 | # Changelog: 4 | 5 | - 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/README.md -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/docs/css/extra.css -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/docs/index.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/manage.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/requirements.txt -------------------------------------------------------------------------------- /rest_framework_transforms/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.5.0' 2 | -------------------------------------------------------------------------------- /rest_framework_transforms/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/rest_framework_transforms/exceptions.py -------------------------------------------------------------------------------- /rest_framework_transforms/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/rest_framework_transforms/parsers.py -------------------------------------------------------------------------------- /rest_framework_transforms/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/rest_framework_transforms/serializers.py -------------------------------------------------------------------------------- /rest_framework_transforms/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/rest_framework_transforms/transforms.py -------------------------------------------------------------------------------- /rest_framework_transforms/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/rest_framework_transforms/utils.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/actual_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/tests/actual_tests.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/tests/migrations/0001_initial.py -------------------------------------------------------------------------------- /tests/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/test_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/tests/test_parsers.py -------------------------------------------------------------------------------- /tests/test_serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/tests/test_serializers.py -------------------------------------------------------------------------------- /tests/test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/tests/test_transforms.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhwick/django-rest-framework-version-transforms/HEAD/tox.ini --------------------------------------------------------------------------------