mirror of
https://github.com/minio/mc.git
synced 2025-11-13 12:22:45 +03:00
Update boto3 python document
This commit is contained in:
6
docs/sdks/python/example-list-buckets.py
Normal file
6
docs/sdks/python/example-list-buckets.py
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import boto3
|
||||
s3 = boto3.resource('s3', use_ssl=False, endpoint_url="http://localhost:9000")
|
||||
for bucket in s3.buckets.all():
|
||||
print(bucket.name)
|
||||
Reference in New Issue
Block a user