Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 1.16 KB

README.rst

File metadata and controls

38 lines (28 loc) · 1.16 KB

Python WordPress

CI Status Dependencies Status Documentation Status FOSSA 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