Blogger (Python) API: How do I retrieve a post by post ID?
- by larsks
Having previously obtained a post ID from a call to gdata.blogger.client.add_post()...
post = client.add_post(...)
post_id = post.get_post_id()
...how do I use that post id to retrieve the post in the future? I thought maybe gdata.blogger.client.Query would be the way to go, but this doesn't support post id as a query term. The example code…