From d0021f1820a8243df60fdb0680d44d2da6a29486 Mon Sep 17 00:00:00 2001 From: roison-montoya Date: Thu, 13 Apr 2023 20:30:21 +1000 Subject: [PATCH] fix: remove my_bucket_name .com suffix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 26db104..7667faa 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ from httpx import AsyncClient from devtools import debug async def s3_demo(client: AsyncClient): - s3 = S3Client(client, S3Config('', '', '', 'my_bucket_name.com')) + s3 = S3Client(client, S3Config('', '', '', 'my_bucket_name')) # upload a file: await s3.upload('path/to/upload-to.txt', b'this the content')