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

The website is using WordPress 4.7.3 when executing `wp = Client("http://www.mywebsite.com/xmlrpc.php","myusername", "mypassword")` I got an error: > File "C:/02-folks/python-auto-send/upload_articles.py", line 20, in post_article > wp = Client("http://www.mywebsite.com/xmlrpc.php","myusername", "mypassword") > File...

Something like this: ```python blog_client.call(posts_methods.GetPosts({'slug': slug})) ``` ...just gets me a list of 10 posts.

I edit my custom field value.No error.But the result abnormal. When i login my edit post via Chrome, just click "update" post button, result will ok. How to execute click...

Right now it says that the property `custom_fields` is a `dict` but it actually is a `list` of `dict`.

I can't add or edit any information in some custom fields. I speak about blog post, not another content. Field with atribute name="url_video" I haven't problem. But for example name="data[url_video]"...

Issue #61 suggest using custom transport but I am unable to make it work. As per example I am using proxied transport as follows `import http.client from wordpress_xmlrpc.compat import xmlrpc_client...

i tried this from https://stackoverflow.com/questions/25876503/how-to-retain-cookies-for-xmlrpc-client-in-python-3 class CookiesTransport(xmlrpc.client.Transport): """A Transport subclass that retains cookies over its lifetime.""" def __init__(self): super().__init__() self._cookies = [] def send_headers(self, connection, headers): if self._cookies: connection.putheader("Cookie", ";...

I am attempting to upload "Current_image.png" with the media method from wordpress_xmlrpc. In the media directory of my site, I already have a "Current_image.png" file, which I would like to...

Hello, I am using a plugin( [theeventscalendar.com](url) ) that stores post meta fields stating with an underscore. From what I understand, I should be able to access those fields in...