GitHub - danielhasselrot/googlereader: Fork of the pyrfeed google reader api

Skip to content

Navigation Menu

Sign in

Appearance settings

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.