Metadata-Version: 1.1
Name: django-simple-api-key
Version: 0.1.1
Summary: A simple Django app to provide users api keys.
Home-page: https://github.com/CIGIHub/django-simple-api-key/
Author: Caroline Simpson
Author-email: csimpson@cigionline.org
License: MIT License
Description: ==============
        Simple Api Key
        ==============
        
        Simple Api Key is a simple Django app to provide users api keys.  A decorator is provided for requiring
        the api_key and api_username in an HTTP Request.  This should only be used with secure connections, for
        example when using SSL.
        
        Quick start
        -----------
        
        1. Add "simple_api_key" to your INSTALLED_APPS setting like this::
                INSTALLED_APPS = (
                        ...
                        'simple_api_key',
                )
        2. This app uses south to manage database migrations.
           Run `python manage.py migrate` to create the simple_api_key models.
        
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires: south (>= 0.8.1)
