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 was looking for a python wrapper that will allow posting comments to wordpress.com without the full authentication to make posts. Does this project support that?

Minor improvement, adds import of `taxonomies` into the root `methods` package. Before: ``` >>> from wordpress_xmlrpc import methods >>> methods.taxonomies Traceback (most recent call last): File "", line 1, in...

I am trying to add a custom post type via xmlrpc: ``` wp = Client(url, username, password) post = WordPressPost() post.post_type = 'job' post.custom_fields = [] post.title = job.job_title post.custom_fields.append({...

I added some code to handle 301 redirects. For example, If you try to connect to a blog hosted on wordpress.com using http, it will 301 redirect you to a...

media.GetMediaItem(attachmend_id) returns post titles insetad of WordPressMedia instance.

GetPost does not deserialize the custom fields but EditPost or NewPost serializes the custom fields to a string. This is pretty unhandy when you want to edit a post after...

My provider has stiff brute force protections in place that this library easily bumps into. Anyway to implement some built in throttling? As a comparison, Pywikipediabot automatically slows things down....

Currently, a blog registered on Wordpress.com requires URL scheme should be HTTPS. It seems to update the sample codes on overview.rst.

upload image to a post

Hi there, thanks for the lib! Problem when using the example: http://python-wordpress-xmlrpc.readthedocs.org/en/latest/examples/taxonomies.html#terms : Or to create a child category: ``` for tl_cat in top_level_categories: if tl_cat not in category_names: child_cat...