Django app implementing server side of tus v1.0.0 powering resumable file uploads for django projects
Project description
Django app implementing server side of tus protocol to powering resumable file uploads for django projects.
Supported Django/Python Versions
Django 2.2.x LTS and Django 3.0.x, 3.1.x
Python > 3.5
Documentation
The full documentation is at https://django-tus.readthedocs.org.
Example project
This example django project includes a javascript TUS demo client and implements django-tus as tus server:: https://github.com/alican/django-tus-example/
Quickstart
Install django-tus:
pip install django-tus
Add ‘django_tus’ to your INSTALLED_APPS setting.:
INSTALLED_APPS = ( ... 'django_tus', )
Add following urls to your urls.py.:
path('upload/', TusUpload.as_view(), name='tus_upload'), path('upload/<uuid:resource_id>', TusUpload.as_view(), name='tus_upload_chunks'),
Configure and add this settings in your settings.py:
TUS_UPLOAD_DIR = os.path.join(BASE_DIR, 'tus_upload') TUS_DESTINATION_DIR = os.path.join(BASE_DIR, 'media', 'uploads') TUS_FILE_NAME_FORMAT = 'increment' # Other options are: 'random-suffix', 'random', 'keep' TUS_EXISTING_FILE = 'error' # Other options are: 'overwrite', 'error', 'rename'
Django has a setting for maximal memory size for uploaded files. This setting needs to be higher than the chunksize of the tus client:
DATA_UPLOAD_MAX_MEMORY_SIZE = 5242880
Todo
More Tus-Extensions
Running Tests
Activate your virtual env, then install the testing requirements with pip install -r requirements_test.txt.
Run the tests with pytest.
You can even generate a coverage report with pytest –cov=django_tus –cov-report=html.
You can run tox to test against multiple Python and Django versions.
Credits
MIT License
Copyright (c) 2020, Alican Toprak
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
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
File details
Details for the file django-tus-0.5.0.tar.gz
.
File metadata
- Download URL: django-tus-0.5.0.tar.gz
- Upload date:
- Size: 10.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b9e8c69a9304993d840856403af1c76497408f4d9132571b974a7c0a0889310 |
|
MD5 | 6a7b67121609c5a52f11d663e0780219 |
|
BLAKE2b-256 | a0bf87910d1293fc43aed2fa8c109a87d7dc47fcb7c08430421207a85a507043 |
File details
Details for the file django_tus-0.5.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_tus-0.5.0-py2.py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f1470e467735b74b008bd4758c113441fec8b45b26b3bd340415a8a61c9bf280 |
|
MD5 | 4eb18839a73aed3f703a5f7a1e02f712 |
|
BLAKE2b-256 | d49d1176601b35b8dc7a4c4144f08b58245ac25b8e80ed844f1a819fb83af990 |