Metadata-Version: 1.1
Name: django-downloadview
Version: 1.1
Summary: Generic download views for Django.
Home-page: https://github.com/benoitbryon/django-downloadview
Author: Benoît Bryon
Author-email: benoit@marmelune.net
License: BSD
Description: ###################
        django-downloadview
        ###################
        
        Django-DownloadView provides generic views to make Django serve files.
        
        It can serve files from models, storages, local filesystem, arbitrary URL...
        and even generated files.
        
        For increased performances, it can delegate the actual streaming to a reverse
        proxy, via mechanisms such as Nginx's X-Accel.
        
        
        *******
        Example
        *******
        
        In some :file:`urls.py`, serve files managed in a model:
        
        .. code-block:: python
        
           from django.conf.urls import url, url_patterns
           from django_downloadview import ObjectDownloadView
           from demoproject.download.models import Document  # A model with a FileField
        
           # ObjectDownloadView inherits from django.views.generic.BaseDetailView.
           download = ObjectDownloadView.as_view(model=Document, file_field='file')
        
           url_patterns = ('',
               url('^download/(?P<slug>[A-Za-z0-9_-]+)/$', download, name='download'),
           )
        
        More examples in the :doc:`demo project <demo>`!
        
        
        *****
        Views
        *****
        
        Several views are provided to cover frequent use cases:
        
        * ``ObjectDownloadView`` to serve some file field of a model.
        * ``StorageDownloadView`` to serve files in a storage, without models.
        * ``PathDownloadView`` to serve files located on local filesystem, without
          storage.
        * ``HTTPDownloadView`` to proxy some arbitrary URL.
        * ``VirtualDownloadView`` to serve in-memory or generated files.
        
        See :doc:`views` for details.
        
        Then get increased performances with :doc:`optimizations/index`.
         
        
        **********
        Ressources
        **********
        
        * Documentation: http://django-downloadview.readthedocs.org
        * PyPI page: http://pypi.python.org/pypi/django-downloadview
        * Code repository: https://github.com/benoitbryon/django-downloadview
        * Bugtracker: https://github.com/benoitbryon/django-downloadview/issues
        * Continuous integration: https://travis-ci.org/benoitbryon/django-downloadview
Keywords: class-based view,generic view,download,file,FileField,ImageField,nginx,x-accel,x-sendfile
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2.6
Classifier: Framework :: Django
