bloglines module

bloglines module provides functions to access Bloglines service through the Bloglines API.

Bloglines Client is an example of using the module.

bl = bloglines (user_id, password)

Returns an object that can be used by the following operations.

bl = bloglines("your_id@mailhost.com", "****")
bl. listsubs ()

The listsubs function is used to retrieve subscription information for a given Bloglines account.

response = bl.listsubs()
writeDocument(response)
bl. getitems (sid)

The getitems function is used to retrieve blog entries for a given subscription.

response = bl.getitems(12345)
writeDocument(response)
bl. update ()

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])