Latest Post

Export Tumblr blog to WordPress with XML file

Since Tumblr doesn’t offer a way to export all the content at once, people have been developing online app that will will dump all your blog post into one XML file (using Tumblr API) which you can use to re-import [...]

Fetch Blogger latest posts with Python, Django, Urllib and XML

http://code.google.com/apis/blogger/docs/2.0/developers_guide_protocol.html 1234567891011121314151617181920212223242526from urllib2 import * from xml.dom import minidom def get_latest_post():     POST_ID = ’7866159460691223515′     url = ‘http://www.blogger.com/feeds/%s/posts/default?max-results=1′ % POST_ID     try:         hndl = urllib2.urlopen(url,None)     except urllib2.HTTPError, ex:     [...]