Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kynan/dokuwikixmlrpc
Python module for the DokuWiki XML-RPC backend
https://github.com/kynan/dokuwikixmlrpc
dokuwiki python xml-rpc xmlrpc
Last synced: 2 months ago
JSON representation
Python module for the DokuWiki XML-RPC backend
- Host: GitHub
- URL: https://github.com/kynan/dokuwikixmlrpc
- Owner: kynan
- License: mit
- Created: 2009-11-15T20:45:16.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T23:20:01.000Z (about 2 years ago)
- Last Synced: 2024-10-12T15:06:04.490Z (3 months ago)
- Topics: dokuwiki, python, xml-rpc, xmlrpc
- Language: Python
- Homepage:
- Size: 54.7 KB
- Stars: 27
- Watchers: 7
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE.txt
Awesome Lists containing this project
README
.. image:: https://img.shields.io/pypi/dm/dokuwikixmlrpc
:target: https://pypi.org/project/dokuwikixmlrpc
.. image:: https://img.shields.io/pypi/v/dokuwikixmlrpc
:target: https://pypi.org/project/dokuwikixmlrpc
.. image:: https://img.shields.io/pypi/pyversions/dokuwikixmlrpc
:target: https://pypi.org/project/dokuwikixmlrpc
.. image:: https://img.shields.io/pypi/format/dokuwikixmlrpc
:target: https://pypi.org/project/dokuwikixmlrpc
.. image:: https://img.shields.io/pypi/l/dokuwikixmlrpc
:target: https://raw.githubusercontent.com/kynan/dokuwikixmlrpc/master/LICENSE.txt
.. image:: https://img.shields.io/github/stars/kynan/dokuwikixmlrpc?style=social
:target: https://github.com/kynan/dokuwikixmlrpc/stargazers
.. image:: https://img.shields.io/github/forks/kynan/dokuwikixmlrpc?style=social
:target: https://github.com/kynan/dokuwikixmlrpc/network/member``dokuwikixmlrpc`` is a python module which implements `DokuWiki's XML-RPC
interface `_.Installation: ::
pip install dokuwikixmlrpc
It can be used to send/retrieve data from remote DokuWiki instances: ::
import dokuwikixmlrpc
dw = DokuWikiClient('https://mywikiurl.com', 'wikiuser', 'wikipassword')
print(dw.dokuwiki_version)
print(dw.pagelist(':'))The module can be executed as a standalone script (this is mainly for testing
purposes). Call ::python -m dokuwikixmlrpc --help
for more information.
Copyright 2009 by Michael Klier .
See `LICENSE.txt `_ for license info.