Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amir/google-reader
https://github.com/amir/google-reader
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/amir/google-reader
- Owner: amir
- License: unlicense
- Created: 2016-01-01T18:08:46.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-02T02:55:38.000Z (almost 9 years ago)
- Last Synced: 2023-04-12T12:26:12.363Z (over 1 year ago)
- Language: Haskell
- Size: 5.86 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# google-reader
```haskell
main :: IO ()
main = do
p <- clientLogin readerOptions
case p of
Left e -> print e
Right r -> subscribe readerOptions r subscriptionOptions >>= print
where
readerOptions = ReaderOptions { root = bazQuxRoot, email = "email", password = "password" }
subscriptionOptions = streamId .~ "feed/http://www.engadget.com/rss.xml" $ defaultEditSubscriptionOptions
```