PyWordpress - Python Library for Wordpress

JANUARY 5, 2011

Announcing pywordpress, a python interface to Wordpress using the Wordpress XML-RPC API.

Usage

Command line

Check out the commands::

wordpress.py -h 

You will need to create a config with the details (url, login) of the wordpress instance you want to work with::

cp config.ini.tmpl config.ini
# now edit away ...
vim config.ini

Python library

Read the code documentation::

>>> from pywordpress import Wordpress
>>> help(Wordpress)