plurkapipy


Unofficial Plurk API in Python

A Python derivative of the Unofficial Plurk API.

This is not an official Plurk API, and thus, problems and support requests should not be directed to the Plurk Team.

Using this API is also subject to Plurk's terms and conditions. Please don't abuse the API and Plurk.

Examples

Viewing some plurks

``` import plurkapi

p = plurkapi.PlurkAPI() for plurk in p.getPlurks(your_userid): print plurk['content'] ```

Retrieving Karma

p.login(nick_name, password) user_info = p.uidToUserinfo(p.uid) print "%s has %1.1f karma." % (p.nickname, user_info['karma'])

And More

See the sample code in the sources...

Browse

You're welcome to browse the source.

Project Information

Labels:
python plurk api