Metadata-Version: 1.0
Name: django-queued-storage
Version: 0.5
Summary: Provides a proxy for Django storage backends that allows you to upload files locally and eventually serve them remotely
Home-page: http://django-queued-storage.rtfd.org
Author: Jannis Leidel
Author-email: jannis@leidel.info
License: BSD
Description: django-queued-storage
        =====================
        
        This storage backend enables having a local and a remote storage
        backend. It will save any file locally and queue a task to transfer it
        somewhere else using Celery_.
        
        If the file is accessed before it's transferred, the local copy is
        returned.
        
        Installation
        ------------
        
        ::
        
            pip install django-queued-storage
        
        Configuration
        -------------
        
        -  Follow the configuration instructions for
           django-celery_
        -  Set up a `caching backend`_
        -  Add ``'queued_storage'`` to your ``INSTALLED_APPS`` setting
        
        .. _django-celery: https://github.com/ask/django-celery
        .. _`caching backend`: https://docs.djangoproject.com/en/1.3/topics/cache/#setting-up-the-cache
        .. _Celery:  http://celeryproject.org/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Utilities
