We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf2cc6e commit 9a7d821Copy full SHA for 9a7d821
README.md
@@ -109,7 +109,6 @@ Put data in an object, get it back and then delete the object:
109
# put contents to some object
110
v3io_client.put_object(container='users',
111
path='/my-object',
112
- offset=0,
113
body='hello, there')
114
115
# get the object
@@ -137,7 +136,7 @@ items = {
137
136
138
# add the records to the table
139
for item_key, item_attributes in items.items():
140
- v3io_client.put_item(container='users', path='/bobs-burgers', attributes=item_attributes)
+ v3io_client.put_item(container='users', path='/bobs-burgers/' + item_key, attributes=item_attributes)
141
142
# adds two fields (height, quip) to the louise record
143
v3io_client.update_item(container='users',
0 commit comments