Per URL api-key control for Django
To get the latest stable release from PyPi
pip install django-api-keyTo get the latest commit from GitHub
pip install -e git+git://github.com/dryice/django-api-key.git#egg=django_api_keyAdd django_api_key to your INSTALLED_APPS
INSTALLED_APPS = (
...,
'django_api_key',
)Migrate your database
./manage.py migrate django_api_keyAdd the django_api_key URLs to your MIDDLEWARE
MIDDLEWARE = [
...,
'django_api_key.middleware.APIKeyMiddleware',
](Optional) adjust the URLs that you don't want api_key check. Default is:
IGNORE_API_KEY_CHECK_FOR = ["/admin/.*", "/docs/.*"]Visit /admin/django_api_key/ipaccess/ and add rules accordingly
TODO:
If you want to contribute to this project, please perform the following steps
# Fork this repository
# Clone your fork
mkvirtualenv -p python3.7 django-api-key
make develop
git co -b feature_branch master
# Implement your feature and tests
git add . && git commit
git push -u origin feature_branch
# Send us a pull request for your feature branchIn order to run the tests, simply execute tox. This will install two new
environments (for Django 2.0 and Django 2.1) and run the tests against both
environments.