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.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5da1414361807de434572f5e6c2a33cfc36e131b6c456cdcedd51a6c365a23ac |
|
MD5 | 4438ad21857b415cc084b5027f0e3c8c |
|
BLAKE2b-256 | 687fd58731ecb532415f92340dbdeb794be2079fb9ca3bbe55d0bab7b33b0c19 |