python-wordpress-xmlrpc icon indicating copy to clipboard operation
python-wordpress-xmlrpc copied to clipboard

Python library for WordPress XML-RPC integration

Results 85 python-wordpress-xmlrpc issues
Sort by recently updated
recently updated
newest added

filepath = 'D:\\APP_MY\\TOOLS_MY\\crawler\\vars\\download\\wp-content/uploads/2020/07\\graffiti1-c1063fa88b70424e95fe0bec6a222674-kaips.com.jpg' ` def upload(self, filepath): filename = os.path.split(filepath)[-1] # prepare metadata data = { 'name': filename, 'type': mimetypes.guess_type(filepath)[0], # mimetype } # read the binary file and let...

post = WordPressPost() post.title = 'Post with new tags' post.content = '...' post.terms_names = { 'post_tag': ['tagA', 'another tag'], 'category': ['My Child Category'], } post.id = client.call(posts.NewPost(post)) i can't add...

I'm trying to assign a template to a post but having no luck. Doing it manually it's under 'post attributes' then 'template' so I was trying to do it as...

version: wordpress 5.3.2 Question: Is the official xmlrpc.php interface not supported? Or is it not supported by the python-wordpress-xmlrpc module? By default, python-wordpress-xmlrpc is used to add blocks using Classic...

Just recently I have gotten this error for trying to connect to our Wordpress server: wordpress_xmlrpc.exceptions.ServerConnectionError: This seemed to be triggered by something, but we're not entirely sure what. It...

My wordpress uses multi-site, and have 3 sites using sub-folder style, lets call them `/`, `/site_a` and `/site_b` if I want to connect to the first site, that's OK. but...

Connected faultString parse error. not well formed. error occurred at line 1, column 1, byte index 0 faultCode -32700

At present I can only get posts one by one and check their categories. Is there anyway I can get posts by categories as in the wordpress website? Thank you.

Hi. I cannot get video meta for a custom post type "video" (as shown below). The meta information is not listed in the custome field group labels. Is there anyway...

Have problem with PHP 7.2 on target... ### PHP Version $ php --version ``` PHP 7.2.17-0ubuntu0.18.04.1 (cli) (built: Apr 18 2019 14:12:38) ( NTS ) Copyright (c) 1997-2018 The PHP...