Django File Upload
Project description
Django File Upload
Installation
pip install django-file-upload
Urls.py
urlpatterns = [ url(r'^f/', include('django_file_upload.urls', namespace='fileupload')), ]
or:
from django.conf.urls import include, url from django_file_upload import views as file_views urlpatterns = [ url(r'^upload$', file_views.file_upload, name='file_upload'), ]
Settings.py
INSTALLED_APPS = ( ... 'django_file_upload', ... )
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for django_file_upload-1.0.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 38e21a7be4da6d8674c41e257e6b8b9d75b25cde7111cbb9d8507e491bffd892 |
|
MD5 | 0ca2c1d03ba46c1353759419fdd8f142 |
|
BLAKE2b-256 | c5c1e51f2252b759d4da114b9ce4958cc8b3de60742d8843d74112748c0f5288 |