b2-sdk-python
b2-sdk-python copied to clipboard
Python library to access B2 cloud storage.
Few remarks regarding the documentation were put into the git repository under: * `doc/source/missing.txt` * `doc/source/remarks.txt` These files were removed in #178 and all issues from there are moved here....
When the source is B2 and the file is hidden, the file on the destination won't be deleted even with ``KeepOrDeleteMode.DELETE``. We should talk if it's expected behavior or maybe...
Currently, the SDK is able to synchronize files between two B2 buckets (implemented in #165), but it synchronizes only the latest versions as the whole idea of synchronization works on...
Request: Provide typings for python Sufficient to support libraries like [`mypy`](https://mypy.readthedocs.io/en/stable/). A starting point perhaps: https://mypy.readthedocs.io/en/stable/stubgen.html?highlight=generate Not sure if this has already been considered, but I saw no record of...
We are in the process of setting up monitoring and alerts for our backblaze backups, so we are notified if one of our backup processes stops working. Some metrics I'd...
when one passes a dict to file_info it is not checked whether too many entries fields are present. Cryptic error is thrown, ie: ``` FAILED to upload after 5 tries....
After getting a `Bucket` instance by calling `B2Api.get_bucket_by_id()`, I'm unable to download files with `bucket.download_file_by_name()`. A minimal example of the problem: ```python from b2sdk.v1 import InMemoryAccountInfo, B2Api, DownloadDestLocalFile app_id =...
`clear_large_file_upload_urls` may not clear some urls that are not in the pool right now, as they are "rented" by upload threads. Those would need to be blacklisted or kept in...