Metadata-Version: 2.1
Name: django-file-download
Version: 1.0.3
Summary: Django File Download
Home-page: https://github.com/django-xxx/django-file-download
Author: Hackathon
Author-email: kimi.huang@brightcells.com
Keywords: Django File Download
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Office/Business :: Financial :: Spreadsheet
Description-Content-Type: text/markdown

# django-file-download
Django File Download

## Installation
```shell
pip install django-file-download
```

## Urls.py
```python
from django.urls import include, re_path

urlpatterns = [
    re_path(r'^f/', include('django_file_download.urls', namespace='django_file_download')),
]
```
or
```python
from django.urls import re_path
from django_file_download import views as file_views

urlpatterns = [
    re_path(r'^download$', file_views.file_download, name='file_download'),
]
```

## Settings.py
```python
INSTALLED_APPS = (
    ...
    'django_file_download',
    ...
)
```
