b2blaze icon indicating copy to clipboard operation
b2blaze copied to clipboard

b2blaze

Results 25 b2blaze issues
Sort by recently updated
recently updated
newest added

Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.23 to 1.26.5. Release notes Sourced from urllib3's releases. 1.26.5 :warning: IMPORTANT: urllib3 v2.0 will drop support for Python 2: Read more in the v2.0 Roadmap Fixed...

dependencies

Bumps [py](https://github.com/pytest-dev/py) from 1.5.4 to 1.10.0. Changelog Sourced from py's changelog. 1.10.0 (2020-12-12) Fix a regular expression DoS vulnerability in the py.path.svnwc SVN blame functionality (CVE-2020-29651) Update vendored apipkg: 1.4...

dependencies

What is the point of retrieving a complete file list right after a successful upload? It is [this line here](https://github.com/sibblegp/b2blaze/blob/5976bdefa4816f8d7586df0c5612bb6ce8d286b6/b2blaze/models/file_list.py#L254). With a bucket of 500k files, the lib goes through...

Got some simple code: `b2 = B2(B2_KEY_ID, B2_APP_KEY)` `bucket = b2.buckets.get(B2_BUCKET)` That returns a `401 - unauthorized:` This happens in latest version 0.2.1 but if I roll-back to 0.1.10 there...

Uploading a file returns the following error: `requests.exceptions.ConnectionError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response',))` I've been debugging for a while and can't figure out whether it's a problem...

The value passed for `mime_content_type` to `B2FileList.upload` was being discarded, leaving filename-based autodetection on in all cases. Change `upload` to pass the mimetype through to the connector (which then handles...

Hello, I'm using b2blaze to upload backups of my websites on Ubuntu 16.04 LTS and Python 3.6. While uploading large files I get connection errors very often. I've forked the...

Adds support for the `prefix` and `delimiter` arguments to [b2_list_file_names](https://www.backblaze.com/b2/docs/b2_list_file_names.html). Fixes #20.

file_by_name = bucket.files.get(file_name='folder/hello.txt') How do I read the information like file name, URL etc?

Currently, there is no support for file modification time. I know that the b2blaze api reads a byte stream so it would have the be specified. It seems like B2...