bucketstore icon indicating copy to clipboard operation
bucketstore copied to clipboard

A simple library for interacting with Amazon S3.

Results 12 bucketstore issues
Sort by recently updated
recently updated
newest added

Bumps [rsa](https://github.com/sybrenstuvel/python-rsa) from 4.0 to 4.7. Changelog Sourced from rsa's changelog. Version 4.7 - released 2021-01-10 Fix #165: CVE-2020-25658 - Bleichenbacher-style timing oracle in PKCS#1 v1.5 decryption code Add padding...

dependencies

Bumps [py](https://github.com/pytest-dev/py) from 1.8.0 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

Bumps [pyyaml](https://github.com/yaml/pyyaml) from 5.1.1 to 5.4. Changelog Sourced from pyyaml's changelog. 5.4 (2021-01-19) yaml/pyyaml#407 -- Build modernization, remove distutils, fix metadata, build wheels, CI to GHA yaml/pyyaml#472 -- Fix for...

dependencies

Bumps [jinja2](https://github.com/pallets/jinja) from 2.10.1 to 2.11.3. Release notes Sourced from jinja2's releases. 2.11.3 This contains a fix for a speed issue with the urlize filter. urlize is likely to be...

dependencies

Bumps [cryptography](https://github.com/pyca/cryptography) from 2.7 to 3.2. Changelog Sourced from cryptography's changelog. 3.2 - 2020-10-25 * **SECURITY ISSUE:** Attempted to make RSA PKCS#1v1.5 decryption more constant time, to protect against Bleichenbacher...

dependencies

```Python def get(self, key: str) -> str: """get the contents of the given key""" selected_key = self.key(key) return selected_key.get() bucket = bucketstore.get(Config().bucket) content = bucket.get('folder/fileName.txt') # b"Hello I'm your file...

The boto3 library allows settings a custom endpoint: ```python resource = boto3.resource( service_name='s3', endpoint_url='http://localhost', ) ``` Supporting this would allow use of bucketstore with other s3 like services, e.g. [localstack](https://github.com/localstack/localstack),...

Allow use of others s3 compatible object stores for example: Digital Ocean Spaces, Minio. Tested with both.

Bumps [ecdsa](https://github.com/warner/python-ecdsa) from 0.13.2 to 0.13.3. Release notes *Sourced from [ecdsa's releases](https://github.com/warner/python-ecdsa/releases).* > ## ecdsa 0.13.3 > Fix CVE-2019-14853 - possible DoS caused by malformed signature decoding > Fix CVE-2019-14859...

dependencies

It would be great to pickle object directly to S3. Something like this would be helpful. import bucketstore bucket = bucketstore.get('bucketstore-playground', create=True) import pickle a = {'hello': 'world'} with open(...