bloglines module provides functions to access Bloglines service through the Bloglines API.
Bloglines Client is an example of using the module.
Returns an object that can be used by the following operations.
bl = bloglines("your_id@mailhost.com", "****")
The listsubs function is used to retrieve subscription information for a given Bloglines account.
response = bl.listsubs() writeDocument(response)
The getitems function is used to retrieve blog entries for a given subscription.
response = bl.getitems(12345) writeDocument(response)
The update function is used to quickly retrieve an unread count for a given Bloglines account. It requires no authentication.
u = bl.update() println(u[0])