Python wrapper for the Readability API.
Project description
This module provides a reference implementation for consuming the Readability API.
You can use it to:
Add/Remove Bookmarks
List Articles
Add/Remove Tags to Bookmarks
Version 0.2.0 Highlights
No more 2.5 support. Sorry.
No more models. Deal with the JSON that comes back from the server.
Version 0.2.0 Soon to Haves
Python 3 support (hopefully)
Usage
Get user info:
>>> response = rdd.get_user() <HTTPResponse object > >>> reponse.content { 'username': <username>, 'first_name': <first_name>, 'last_name': <last_name>, 'avatar_url': <avatar_url>, 'date_joined': <date
List a user’s bookmarks:
>>> rdd.get_bookmarks() [<bookmark "1">, <bookmark "3">, <bookmark "5">, <bookmark "7">] >>> for b in rdd.get_bookmarks() ... print b.article.url
List a user’s favorites:
>>> rdd.get_bookmarks(favorite=True) [<bookmark "3">]
Save the OAuth Token for later:
>>> rdd.token_tuple ('oauth-token', 'oauth-secret')
Install
Installing python-readability is easy:
$ pip install readability-api
Or, if you must:
$ easy_install readability-api
But, you really shouldn’t do that.
License
The MIT License:
Copyright (C) 2013 by Readability, LLC Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
API Access
Don’t have a Readability API key? Get one here.