xmlrpclib

How to get all the posts from a wordpress blog using client.call function?

How to get all the posts from a wordpress blog using client.call function? Question: I am using python wordpress_xmlrpc library for extracting wordpress blog data. I want to fetch all posts of my wordpress blog. This is my code client = Client(url, ‘user’, ‘passw’) all_posts = client.call(GetPosts()) But this is returning only the latest 10 …

Total answers: 2