Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
Doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoav Aviram committed Aug 4, 2012
1 parent be86589 commit ad1e092
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -47,13 +47,13 @@ Working with a Worksheet:
18
>>> row_to_update = rows[0]
>>> row_to_update['name'] = 'New Name'
>>> sheet.update_row(0, row_to_update)
>>> sheet.update_row(row_to_update)
{'name': 'New Name'...}
>>> row_to_insert = rows[0]
>>> row_to_insert['name'] = 'Another Name'
>>> sheet.insert_row(row_to_insert)
>>> row = sheet.insert_row(row_to_insert)
{'name': 'Another Name'...}
>>> sheet.delete_row(18)
>>> sheet.delete_row(row)
>>> sheet.delete_all_rows()

Advanced Queries:
Expand Down

0 comments on commit ad1e092

Please sign in to comment.