Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-file-upload-1.1.1.tar.gz (2.7 kB view hashes)

Uploaded Source

Built Distribution

django_file_upload-1.1.1-py2.py3-none-any.whl (3.8 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page