boto-s3-router
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.
# 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')...
# 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...
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...
```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 ```