Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 677 Bytes

File metadata and controls

25 lines (16 loc) · 677 Bytes

Google Reader API lib (unofficial)

This lib is a fork of pyrfeed

Docs

For documentation about the unofficial Google Reader API you can read GoogleReaderAPI

Quick Start

import GoogleReader

gr = GoogleReader.GoogleReader()
l = ('mymail@google.com', 'mypassword')
gr.identify(*l)
gr.login()

#Example to subscribe to a new feed
gr.add_subscription(url="https://gist.github.com/brutuscat.atom")

You can also modify and run the GoogleReader.test() method to see if everything is running smoothly.