Metadata-Version: 2.1
Name: torqueclient
Version: 0.6.7
Summary: Python client for mediawiki/torque
Home-page: https://code.librehq.com/ots/mediawiki/torque
Author: Open Tech Strategies, LLC
Author-email: frankduncan@opentechstrategies.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
License-File: LICENSE.md
Requires-Dist: mwclient
Requires-Dist: python-dateutil

# torqueclient

Library to interface with a torque server running behind mediawiki.  It creates
a nicer programmattic interface with local caching options for the more cumbersome
rest interface that the torque mediawiki extension creates.

# Usage

The basic usage is:

```
from torqueclient import Torque

torque = Torque("<URL>", "<username>", "<password>")

print(torque.collections["<collection_name>"].documents["<document_key>"]["<field>"]
```

See the inline documentation for more information.
