A Python library for interacting with WordPress REST API.
- Free software: MIT License
- TODO
>>> 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