views:

9

answers:

0

I would like to retrieve through the python blogger API the list of published (not draft) blog entry from my blog. What parameter do I need to add to specify draft=false.

query = gdata.blogger.client.Query()
query.max_results = 3
feed = bc.GetPosts(blog_id=blog_id, query=query)