Metadata-Version: 2.1
Name: django-sendfile2
Version: 0.6.0
Summary: Abstraction to offload file uploads to web-server (e.g. Apache with mod_xsendfile) once Django has checked permissions etc.
Home-page: https://github.com/moggers87/django-sendfile2
Author: Matt Molyneaux
Author-email: moggers87+git@moggers87.co.uk
License: BSD
Description: =================
        Django Sendfile 2
        =================
        
        .. image:: https://travis-ci.org/moggers87/django-sendfile2.svg?branch=master
           :target: https://travis-ci.org/moggers87/django-sendfile2
        
        .. inclusion-marker-do-not-remove-start
        
        This is a wrapper around web-server specific methods for sending files to web
        clients.  This is useful when Django needs to check permissions associated
        files, but does not want to serve the actual bytes of the file itself.  i.e. as
        serving large files is not what Django is made for.
        
        Note this should not be used for regular file serving (e.g. css etc), only for
        cases where you need Django to do some work before serving the actual file.
        
        - Download: https://pypi.org/project/django-sendfile2/
        - Source: https://github.com/moggers87/django-sendfile2
        - Documentation: https://django-sendfile2.readthedocs.io/
        
        Supported Python Versions
        =========================
        
        Python 3.5, 3.6. 3.7, and 3.8 are currently supported by this library.
        
        Supported Django Versions
        =========================
        
        Django 2.1, 2.2, and 3.0 are currently supported by this library.
        
        Fork
        ====
        
        This project is a fork of `django-sendfile
        <https://github.com/johnsensible/django-sendfile>`_. The original project
        appears mostly dead and has a number of outstanding bugs (especially with
        Python 3).
        
        Funding
        =======
        
        If you have found django-sendfile2 to be useful and would like to see its continued
        development, please consider `buying me a coffee
        <https://ko-fi.com/moggers87>`_.
        
        .. inclusion-marker-do-not-remove-end
        
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 :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Provides-Extra: docs
