Python WordPress

https://img.shields.io/travis/myles/python-wp.svg Code Climate Updates Documentation Status

A Python library for interacting with WordPress REST API.

  • Free software: MIT License

Features

  • TODO

Quick Start

>>> from wordpress import WordPress
>>> wp = WordPress('http://example.org/')
>>> posts = wp.list_posts()
>>> for p in posts:
...     print('{title[rendered]}: {link}'.format(**p._json))
Hello, World: http://example.org/2017/01/30/hello-world