Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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.