Add boto3 standalone example.

This commit is contained in:
Steve Pulec 2017-01-11 21:21:42 -05:00
parent 74bbd9c8e5
commit 6ac8c2b4da

View File

@ -248,6 +248,16 @@ proxy_port = 5000
proxy = 127.0.0.1
```
If you want to use boto3 with this, you can pass an `endpoint_url` to the resource
```python
boto3.resource(
service_name='s3',
region_name='us-west-1',
endpoint_url='http://localhost:5000',
)
```
## Install
```console