b2-sdk-python icon indicating copy to clipboard operation
b2-sdk-python copied to clipboard

Python library to access B2 cloud storage.

Results 70 b2-sdk-python issues
Sort by recently updated
recently updated
newest added

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....

enhancement
good first issue

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...

question

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...

enhancement
question

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...

enhancement
good first issue

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...

enhancement

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 =...

bug
good first issue

`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...