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

I have been able to use EditPost to change a post's format from 'standard' to 'aside' etc., but cannot change a post with, e.g., 'aside' format to 'standard'. A sketch...

Hi! I am trying to set a post permalink on the posts I'm publishing, and setting the value of "post.link" is not working. Can you help me out?

I get this error when I try to connect to one of my blogs `ssl.SSLError: [Errno 1] _ssl.c:510: error:14077438:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error` I'm having problems figuring out what's causing...

Hello. Can http compression be used with python-wordpress-xmlrpc? Thanks.

A script using python-wordpress-xmlrpc started giving this error when trying to make the client connection: SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert internal error Strangely, a client connection to a different domain (and different...

Whenever you retrieve or create a comment with valid unicode content, the `__repr__` [method](https://github.com/maxcutler/python-wordpress-xmlrpc/blob/e765a36f6fe483cc98136350c43effc6199ce5d0/wordpress_xmlrpc/wordpress.py#L50) fails on decoding. Seems like it's trying to convert what happens to be a unicode (or...

How do I attach multiple photo to the same post?

I have a perfectly normal call: got = server.call(wordpress_xmlrpc.methods.posts.EditPost(postid, post)) (where server and post are properly prepared using the appropriate methods) which is failing on a Wordpress.com blog with: Fault...

I'm trying to EDIT (remove, add new etc) Terms in post. Currently I'm getting a post and editing its other properties (title, content) by assigning new values, however that doesn't...

I'm trying to set some wordpress options via the following function: opts = dict() opt = GoogleTools.GetCsvObj(Settings.key, Settings.gid["options"]) for row in opt: opts[row[0]] = row[1] output = client.call(options.SetOptions(opts)) The dictionary...