Simple Key authentication for Django.Based on github.com/scoursen/django-apikey
Project description
Key authentication for django. Can be used with django-piston easily.
Based on https://github.com/scoursen/django-apikey.
Installation
pip install django-apikey
Configuration
Add ‘apikey’ to your settings.py:
INSTALLED_APPS = ( ... 'apikey', .... )
You can change the authorization header by setting the APIKEY_AUTHORIZATION_HEADER in settings.py:
APIKEY_AUTHORIZATION_HEADER = 'App-Authorization'
To add api authentication with piston do thisin your handlers.
from apikey.auth import ApiKeyAuthentication from piston.handler import BaseHandler from piston.resource import Resource from myapp.models import Item class ItemHandler(BaseHandler): allowed = ('GET', ) model = Item def read(self): return Item.objects.all() handler = Resource( handler=ItemHandler, authentication=ApiKeyAuthentication())
Thanks
This project is base on the one of Steve Course https://github.com/scoursen/django-apikey but with several simplifications.
License
This software is licensed under the New BSD License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-apikey-0.1.8.tar.gz
(2.5 kB
view details)
File details
Details for the file django-apikey-0.1.8.tar.gz
.
File metadata
- Download URL: django-apikey-0.1.8.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ae6091c21bd3ec072c2009fd46d051aefdec77226731bc7743b29c97667d732a |
|
MD5 | 58f6c6899eb9c168d24c48662cdda0d3 |
|
BLAKE2b-256 | c97b33b20610cdb8484fdac64c20281c018236871666af74213e90ef1d3beef8 |