Metadata-Version: 2.4
Name: torqueclient
Version: 0.7.2
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
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: summary

# 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.
