boto-s3-router icon indicating copy to clipboard operation
boto-s3-router copied to clipboard

Boto S3 Router provides a Boto3-like client that routes requests between S3 clients according to the bucket and the key in the request.

Results 4 boto-s3-router issues
Sort by recently updated
recently updated
newest added

# Boto resource Provides high-level, object-oriented API. It exposes sub-resources and collections of AWS resources and has actions (operations on resources). [API] # Usage ```python import boto3 s3 = boto3.resource('s3')...

team/ecosystem

# S3FS S3Fs is a Pythonic file interface to S3. It builds on top of botocore. The most common way to interact with s3 on **Pandas**. [API] # Usage ```python...

team/ecosystem

Currently supports only dictionary. ```python CopySource='string' or {'Bucket': 'string', 'Key': 'string', 'VersionId': 'string'} ``` [Reference] Not trivial because If you want to provide the copy source for an S3 access...

team/ecosystem

```python botor.upload_file("/my/local/file", "example-bucket", "example-key") # doesn't work botor.upload_file(Filename="/my/local/file", Bucket="example-bucket", Key="example-key") # works ```

team/ecosystem