Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/myles/python-wp
A Python library for interacting with WordPress REST API.
https://github.com/myles/python-wp
python wordpress
Last synced: 23 days ago
JSON representation
A Python library for interacting with WordPress REST API.
- Host: GitHub
- URL: https://github.com/myles/python-wp
- Owner: myles
- License: mit
- Created: 2017-01-25T20:53:43.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2022-06-26T08:24:14.000Z (over 2 years ago)
- Last Synced: 2024-10-03T12:33:19.322Z (about 1 month ago)
- Topics: python, wordpress
- Language: Python
- Homepage:
- Size: 80.1 KB
- Stars: 40
- Watchers: 4
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
================
Python WordPress
================.. image:: https://img.shields.io/travis/myles/python-wp.svg
:target: https://travis-ci.org/myles/python-wp
:alt: CI Status.. image:: https://pyup.io/repos/github/myles/python-wp/shield.svg
:target: https://pyup.io/repos/github/myles/python-wp/
:alt: Dependencies Status.. image:: https://readthedocs.org/projects/python-wordpress/badge/?version=master
:target: http://python-wordpress.readthedocs.io/en/master/?badge=master
:alt: Documentation Status.. image:: https://app.fossa.io/api/projects/git%2Bgithub.com%2Fmyles%2Fpython-wp.svg?type=shield
:target: https://app.fossa.io/projects/git%2Bgithub.com%2Fmyles%2Fpython-wp?ref=badge_shield
:alt: FOSSA StatusA 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