django-file-upload
Django File Upload
Installation
pip install django-file-upload
Urls.py
from django.urls import include, re_path
urlpatterns = [
re_path(r'^f/', include('django_file_upload.urls', namespace='django_file_upload')),
]
or
from django.urls import re_path
from django_file_upload import views as file_views
urlpatterns = [
re_path(r'^upload$', file_views.file_upload, name='file_upload'),
]
Settings.py
INSTALLED_APPS = (
...
'django_file_upload',
...
)
Release files for django-file-upload 1.1.6
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| django-file-upload-1.1.6.tar.gz | 3.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| django_file_upload-1.1.6-py2.py3-none-any.whl | Python 3, Python 2 | none | any | Details |
Total release size: 7.1 kB
Release files / django-file-upload-1.1.6.tar.gz
| Download URL | django-file-upload-1.1.6.tar.gz |
|---|---|
| Size | 3.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
294b1dcfbfbe4c06ad3a7e696dd9e9dc40715fdbac33c8105f4faccb5f41aabe
|
|
BLAKE2b-256 checksum How to use checksums |
de871585998e717f7f86da87ac106d2e188eaa925dcc60e5e3e1021184f3c67f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.11.1
|
Release files / django_file_upload-1.1.6-py2.py3-none-any.whl
| Download URL | django_file_upload-1.1.6-py2.py3-none-any.whl |
|---|---|
| Size | 4.0 kB |
| Tags | Python 2 Python 3 |
|
SHA-256 checksum How to use checksums |
b945801ab86a373944fbc7c799cc4daa79dddcbcf6ced0ba69de7d245870ca44
|
|
BLAKE2b-256 checksum How to use checksums |
dc12c2e4697435a19d17511ec296e9fb0edc82c3e323e0f3220e26c5eeb453a5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.11.1
|