Desinerd : Dipankar's Blog

Listing all your blogposts

Published: in Technical, , , , , , , by . Leave a Comment on Listing all your blogposts.

So here is a quick snapshot at how to get all your wordpress blogposts using python [or wordpresslib to be specific] — #!/usr/bin/env python import wordpresslib import tinyurl wordpress = raw_input(‘Wordpress URL:’) user = raw_input(‘Username:’) password = raw_input(‘Password:’) # prepare client object wp = wordpresslib.WordPressClient(wordpress, user, password) # select blog id wp.selectBlog(0) posts = wp.getRecentPosts(100) […]

My first post at kwippy blog

Published: in @Work, , , , , , by . Leave a Comment on My first post at kwippy blog.

http://blog.kwippy.com/2008/07/03/technology-behind-kwippy-and-scaling/ A post about how kwippy works and scaling strategies involved. Feel free to ramble and comment.