All Projects → eyeseast → python-wordpress

eyeseast / python-wordpress

Licence: other
A really simple Python client for WordPress JSON API

Programming Languages

python
139335 projects - #7 most used programming language

Python WordPress

A simple Python library for talking to Wordpress in JSON. This library relies on the WordPress JSON API plugin. This won't work if your WordPress site doesn't have the plugin installed.

Install:

$ pip install python-wordpress

Or git clone and python setup.py install and such.

Usage:

>>> from wordpress import WordPress
>>> wp = WordPress('http://example.com/blog/')
>>> posts = wp.get_recent_posts()

For now, this only covers the read portions of the API under the core controller. See the WordPress JSON API documentation for details.

Tests assume a WordPress blog running on MAMP at http://localhost:8888/wordpress, but you can change that by setting WORDPRESS_BLOG_URL as an environment variable, like so:

WORDPRESS_BLOG_URL=http://wordpress.local.host python test.py
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].