Metadata-Version: 2.1
Name: dokuwikixmlrpc
Version: 2022.12.22
Summary: DokuWiki XML-RPC module.
Home-page: https://github.com/kynan/dokuwikixmlrpc
Download-URL: https://github.com/downloads/kynan/dokuwikixmlrpc/dokuwikixmlrpc.tgz
Author: Michael Klier
Author-email: chi@chimeric.de
Maintainer: Florian Rathgeber
Maintainer-email: florian.rathgeber@gmail.com
License: License :: OSI Approved :: MIT License
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/x-rst
License-File: LICENSE.txt

.. 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 <https://www.dokuwiki.org/devel:xmlrpc>`_.

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 <LICENSE.txt>`_ for license info.
