From 6ac8c2b4da157c7369e83251b99b9a4159e9a0e9 Mon Sep 17 00:00:00 2001 From: Steve Pulec Date: Wed, 11 Jan 2017 21:21:42 -0500 Subject: [PATCH] Add boto3 standalone example. --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 0be93054f..c05f1dff4 100644 --- a/README.md +++ b/README.md @@ -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