tus-py-client
tus-py-client copied to clipboard
A Python client for the tus resumable upload protocol
Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 1.7.1 to 5.1.1. Release notes Sourced from sphinx's releases. v5.1.1 Changelog: https://www.sphinx-doc.org/en/master/changes.html v5.1.0 Changelog: https://www.sphinx-doc.org/en/master/changes.html v5.0.2 Changelog: https://www.sphinx-doc.org/en/master/changes.html v5.0.1 Changelog: https://www.sphinx-doc.org/en/master/changes.html v5.0.0 No release notes provided. v5.0.0b1...
Hi, I have been trying to send the file name and another info via the `Upload-Metadata` header value. But somehow i cant see it in the uploaded video in cloudflare...
Updates the requirements on [pytest-cov](https://github.com/pytest-dev/pytest-cov) to permit the latest version. Changelog Sourced from pytest-cov's changelog. 3.0.0 (2021-10-04) Note that this release drops support for Python 2.7 and Python 3.5. Added...
Seems our setup.py is too complicated for Dependabot. Maybe we should try to stick to this format: https://github.com/dependabot/dependabot-core/blob/main/python/spec/fixtures/setup_files/setup.py
We need to automate the publishing of new versions.
This PR prevents the uploaded file from being completely loaded in memory. Instead it will be read chunk-by-chunk. This can be particularly useful to upload files larger than the available...
Uploads can be deleted using a `DELETE` request but tus-py-client does not support this yet. See https://github.com/tus/tusd/issues/469#event-4527079893
Hi, I noticed all the official clients are lacking support for parallel upload. Is it because this feature is not production ready or is it because it's just not implemented?...
My `client.py` ``` from tusclient import client # Set Authorization headers if it is required # by the tus server. my_client = client.TusClient('http://0.0.0.0:5000/resume_upload', headers={'Authorization': 'Basic xxyyZZAAbbCC='}) # Set more headers....