]> git.proxmox.com Git - ceph.git/blobdiff - ceph/examples/boto3/list_unordered.py
update ceph source to reef 18.1.2
[ceph.git] / ceph / examples / boto3 / list_unordered.py
diff --git a/ceph/examples/boto3/list_unordered.py b/ceph/examples/boto3/list_unordered.py
deleted file mode 100755 (executable)
index 9790513..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/usr/bin/python
-
-import boto3
-import sys
-
-if len(sys.argv) != 2:
-    print('Usage: ' + sys.argv[0] + ' <bucket>')
-    sys.exit(1)
-
-# bucket name as first argument
-bucketname = sys.argv[1]
-
-# endpoint and keys from vstart
-endpoint = 'http://127.0.0.1:8000'
-access_key='0555b35654ad1656d804'
-secret_key='h7GhxuBLTrlhVUyxSPUKUV8r/2EI4ngqJxD7iBdBYLhwluN30JaT3Q=='
-
-client = boto3.client('s3',
-        endpoint_url=endpoint,
-        aws_access_key_id=access_key,
-        aws_secret_access_key=secret_key)
-
-# getting an unordered list of objects is an extension to AWS S3 API
-
-print(client.list_objects(Bucket=bucketname, AllowUnordered=True))