summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorAbhishek Lekshmanan <abhishek@suse.com>2020-02-25 19:43:46 +0100
committerAbhishek Lekshmanan <abhishek@suse.com>2020-02-26 10:27:10 +0100
commitc968f418de60a613f4c5511794e6941884e6a658 (patch)
treeeeb79efad0b9b8408a7f8430529aedb0ff12355a /examples
parenteg: boto3 update doc urls to the latest (diff)
downloadceph-c968f418de60a613f4c5511794e6941884e6a658.tar.xz
ceph-c968f418de60a613f4c5511794e6941884e6a658.zip
examples: add python source for append & get_usage_stats
Add some pythonic examples that can be reused Signed-off-by: Abhishek Lekshmanan <abhishek@suse.com>
Diffstat (limited to 'examples')
-rwxr-xr-xexamples/boto3/append_object.py42
-rwxr-xr-xexamples/boto3/get_usage_stats.py17
2 files changed, 59 insertions, 0 deletions
diff --git a/examples/boto3/append_object.py b/examples/boto3/append_object.py
new file mode 100755
index 00000000000..0e13252ec3f
--- /dev/null
+++ b/examples/boto3/append_object.py
@@ -0,0 +1,42 @@
+#!/usr/bin/python
+from __future__ import print_function
+
+import boto3
+import sys
+import json
+
+def js_print(arg):
+ print(json.dumps(arg, indent=2))
+
+if len(sys.argv) != 3:
+ print('Usage: ' + sys.argv[0] + ' <bucket> <key>')
+ sys.exit(1)
+
+# bucket name as first argument
+bucketname = sys.argv[1]
+keyname = sys.argv[2]
+# 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)
+
+print('deleting object first')
+js_print(client.delete_object(Bucket=bucketname, Key=keyname))
+print('appending at position 0')
+resp = client.put_object(Bucket=bucketname, Key=keyname,
+ Append=True,
+ AppendPosition=0,
+ Body='8letters')
+
+js_print(resp)
+append_pos = resp['AppendPosition']
+print('appending at position %d' % append_pos)
+js_print(client.put_object(Bucket=bucketname, Key=keyname,
+ Append=True,
+ AppendPosition=append_pos,
+ Body='8letters'))
diff --git a/examples/boto3/get_usage_stats.py b/examples/boto3/get_usage_stats.py
new file mode 100755
index 00000000000..0b7880d4f66
--- /dev/null
+++ b/examples/boto3/get_usage_stats.py
@@ -0,0 +1,17 @@
+#!/usr/bin/python
+from __future__ import print_function
+
+import boto3
+import json
+
+# 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)
+
+print(json.dumps(client.get_usage_stats(), indent=2))