Metadata-Version: 1.1
Name: django-aws
Version: 0.1
Summary: Django AWS backends
Home-page: https://github.com/piotrbulinski/django_aws
Author: Piotr Buliński
Author-email: piotr@bulinski.pl
License: BSD licenses
Description: Django AWS
        ==========
        
        The idea behind Django AWS is to create a small set of Django backends which
        can utilize the AWS services.
        
        Currently it consists only of django sessions backend, but will be extended in
        future to add some other (authentication backends are next on my list).
        
        Django AWS Sessions
        -------------------
        
        To configure Django AWS Sessions, you have to simply set in `settings.py`:
        
        ```
        SESSION_ENGINE = 'django_aws.sessions.sdb'
        ```
        
        Additionally you may want to set:
        
        ### AWS_ACCESS_KEY_ID
        
        Default: `None`
        
        AWS IAM Access Key ID. If `None`, the `os.environ['AWS_ACCESS_KEY_ID']` or EC2
        instance metadata will be used to authenticate.    
        
        ### AWS_SECRET_ACCESS_KEY
        
        Default: `None`
        
        AWS IAM Secret Access Key. If `None`, the `os.environ['AWS_SECRET_ACCESS_KEY']`
        or EC2 instance metadata will be used to authenticate.
        
        ### AWS_SESSIONS_SDB_REGION
        
        Default: `'us-east-1'`
        
        Regione to which SimpleDB will connect
        
        ### AWS_SESSIONS_SDB_DOMAIN
        
        Default: `'django_aws_sessions'`
        
        SimpleDB domain name used for storing sessions.
        
        
        Ideas
        =====
        
        In case you have some idea what could be added or would like to contribute,
        please open a new issue and let's discuss it there :)
        
        
        TODO
        ====
        
        * Write unittests
        * Integrate with TravisCI
        
Platform: Posix; MacOS X; Windows
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Framework :: Django
