Skip to content

Commit 9a7d821

Browse files
authored
README fixes (#31)
1 parent cf2cc6e commit 9a7d821

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ Put data in an object, get it back and then delete the object:
109109
# put contents to some object
110110
v3io_client.put_object(container='users',
111111
path='/my-object',
112-
offset=0,
113112
body='hello, there')
114113

115114
# get the object
@@ -137,7 +136,7 @@ items = {
137136

138137
# add the records to the table
139138
for item_key, item_attributes in items.items():
140-
v3io_client.put_item(container='users', path='/bobs-burgers', attributes=item_attributes)
139+
v3io_client.put_item(container='users', path='/bobs-burgers/' + item_key, attributes=item_attributes)
141140

142141
# adds two fields (height, quip) to the louise record
143142
v3io_client.update_item(container='users',

0 commit comments

Comments
 (0)