Skip to content

kynan/dokuwikixmlrpc

Repository files navigation

https://img.shields.io/pypi/dm/dokuwikixmlrpc https://img.shields.io/pypi/v/dokuwikixmlrpc https://img.shields.io/pypi/pyversions/dokuwikixmlrpc https://img.shields.io/pypi/format/dokuwikixmlrpc https://img.shields.io/pypi/l/dokuwikixmlrpc https://img.shields.io/github/stars/kynan/dokuwikixmlrpc?style=social https://img.shields.io/github/forks/kynan/dokuwikixmlrpc?style=social

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 <chi@chimeric.de>.

See LICENSE.txt for license info.