myles / python-wp

A Python library for interacting with WordPress REST API.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

A Python library for interacting with WordPress REST API.

License:MIT License


Languages

Language:Python 95.0%Language:Makefile 5.0%