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 <[email protected]>.
See LICENSE.txt for license info.