Skip to main content

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

  • View Contributions

Authentication options

  • XAuth (API Keys + Username/Password)

  • OAuth (API Keys + User Authorization)

Usage

Authentication is simple:

import readability

token = readability.xauth('consumer-key', 'consumer-secret', 'username', 'password')
rdd = readability.oauth('consumer-key', 'consumer-secret', token=token)

Get user info:

>>> rdd.get_me()
<user name="username">

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) 2011 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? Send us an email.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

readability-api-0.1.2.tar.gz (10.3 kB view details)

Uploaded Source

File details

Details for the file readability-api-0.1.2.tar.gz.

File metadata

File hashes

Hashes for readability-api-0.1.2.tar.gz
Algorithm Hash digest
SHA256 e6540662a74e3fb678e335de47682134fe6d9ffa56036f1778ab02c1a06005de
MD5 bc797c44fb5817039282d3522f976f77
BLAKE2b-256 81df47a3a08afd522b1063645d248e4e840c187d3a87b938e76f38446b777d42

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page