Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Django app implementing server side of tus v1.0.0 powering resumable file uploads for django projects
.. image:: https://badge.fury.io/py/django-tus.png :target: https://badge.fury.io/py/django-tus
.. image:: https://travis-ci.org/alican/django-tus.png?branch=master :target: https://travis-ci.org/alican/django-tus
Django app implementing server side of tus protocol to powering resumable file uploads for django projects.
Django 2.2.x LTS and
Django 3.0.x, 3.1.x
Python > 3.5
The full documentation is at https://django-tus.readthedocs.org.
This example django project includes a javascript TUS demo client and implements django-tus as tus server:: https://github.com/alican/django-tus-example/
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
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.
* http://tus.io/protocols/resumable-upload.html
* https://github.com/matthoskins1980/Flask-Tus
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.
FAQs
Django app implementing server side of tus v1.0.0 powering resumable file uploads for django projects
We found that django-tus demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.