Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 293 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 293 Bytes

Example:

import sprintly

account = sprintly.Account(('[email protected]', 'cafebabefeeddeadbeefdefec8'))
product = account.products()[0]
item    = product.item('1')
comment = item.create_comment({ 'body': 'hello world!' })
comment1 = item.comments()[0]
comment2 = item.comment(comment.id)