├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── codecov.yml ├── requirements ├── requirements-base.txt └── requirements-testing.txt ├── rest_framework_api_key ├── __init__.py ├── admin.py ├── helpers.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py └── permissions.py ├── runtests.py ├── setup.py ├── tests ├── __init__.py ├── settings.py ├── test_admin.py ├── test_models.py ├── test_views.py ├── urls.py └── views.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/codecov.yml -------------------------------------------------------------------------------- /requirements/requirements-base.txt: -------------------------------------------------------------------------------- 1 | djangorestframework>=3.3 2 | -------------------------------------------------------------------------------- /requirements/requirements-testing.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/requirements/requirements-testing.txt -------------------------------------------------------------------------------- /rest_framework_api_key/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.3" 2 | -------------------------------------------------------------------------------- /rest_framework_api_key/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/rest_framework_api_key/admin.py -------------------------------------------------------------------------------- /rest_framework_api_key/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/rest_framework_api_key/helpers.py -------------------------------------------------------------------------------- /rest_framework_api_key/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/rest_framework_api_key/migrations/0001_initial.py -------------------------------------------------------------------------------- /rest_framework_api_key/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework_api_key/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/rest_framework_api_key/models.py -------------------------------------------------------------------------------- /rest_framework_api_key/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/rest_framework_api_key/permissions.py -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/tests/test_admin.py -------------------------------------------------------------------------------- /tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/tests/test_models.py -------------------------------------------------------------------------------- /tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/tests/test_views.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/tests/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manosim/django-rest-framework-api-key/HEAD/tox.ini --------------------------------------------------------------------------------