Simple, Chunked and Concurrent uploads with Django + Fine Uploader
Project description
Simple, Chunked and Concurrent uploads with Django + Fine Uploader
This is an alpha version.
We have a example project. Just git clone the django-fine-uploader repository and follow the instructions.
Quickstart
Install django_fine_uploader:
pip install django-fine-uploader
Add it to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'django_fine_uploader.apps.DjangoFineUploaderConfig',
...
)
Add django_fine_uploader’s URL patterns:
urlpatterns = [
...
url(r'^fine-uploader/', include('django_fine_uploader.urls', namespace='django_fine_uploader')),
...
]
And finally your html file: copy from this gist. (too much html to put on our README)
Features
Simple Upload
Chunked Upload
Concurrent Chunked Upload
Easy extend FineUploaderView (FormView)
Or create your custom view and use the Django Fine Uploader handler
TODO
Running Tests
Does the code actually work?
source <YOURVIRTUALENV>/bin/activate (myenv) $ pip install tox (myenv) $ tox
Credits
Tools used in rendering this package:
Fineuploader: http://fineuploader.com
History
0.2.0 (2017-02-12)
Now we have a BaseFineUploader
A basic planing for Beta release: https://github.com/douglasmiranda/django-fine-uploader/projects/1
Better info on README and more
0.1.0 (2017-02-10)
First release on PyPI.