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='django_file_upload')), ]
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.1.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e1a253219d767a2384b3a390a4f820f26fe8425a66bd29bdf6c9f2c5af98988 |
|
MD5 | 0719f905d476f3992f9284cacc533de2 |
|
BLAKE2b-256 | 9cc9560a4103d3caf899f1fea8c789cf99644070ef380818cd5c6471b79376d8 |