Pressly aims to be the simplest python wordpress library to use.
Treat your blog, posts & comments like native python types and use your existing python knowledge to talk easily to wordpress.
Pressly makes reading from and posting to wordpress blogs simple.
Want to get the most recent post in a blog? Using pressly thats: blog[0]
Want to get the 5 most recent posts in a blog? Here thats: blog[:5]
How about printing the title of the post recent post? Pressly means you dont have to learn xmlrpc and just say:
post = blog[0]
print post["title"]
By having your blog appear as a simple python object there is no new protocol to learn, you already know how to use it by using python!
View full history Series and milestones
trunk series is the current focus of development.