Skip to content

Instantly share code, notes, and snippets.

@cshoe
Created June 3, 2013 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cshoe/5700752 to your computer and use it in GitHub Desktop.
Save cshoe/5700752 to your computer and use it in GitHub Desktop.
Quick ReaderClient example.
from readability import ReaderClient
rdb_client = ReaderClient('my_reader_token', 'my_reader_secret', 'user_key', 'user_secret')
bookmarks_response = rdb_client.get_bookmarks(favorite=True)
print bookmarks_response.content
>>> {'bookmarks': [{'user_id': 1039419, 'read_percent': u'0.00', u'tags': [], u'date_updated': u'2013-05-31 08:22:57', u'favorite': True, u'archive': False, u'date_archived': None, u'date_opened': None, u'article': … }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment