Metadata-Version: 2.0
Name: confluence-rest-library
Version: 0.2.3
Summary: A simple wrapper around the Confluence REST API.
Home-page: https://github.com/DaveTCode/confluence-python-lib
Author: David Tyler
Author-email: davet.code@gmail.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Keywords: confluence
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=3.6
Requires-Dist: requests (<3.0.0a0,>=2.18.4)

[![Build Status](https://travis-ci.org/DaveTCode/confluence-python-lib.svg?branch=master)](https://travis-ci.org/DaveTCode/confluence-python-lib)

# Comala Workflow Python Library

This is a simple wrapper around the REST API which the Confluence provides.

## Installation

~~~~
pip install confluence-rest-library
~~~~

## Usage

```python
from confluence.client import Confluence
c = Confluence('https://site:8080/confluence', ('user', 'pass'))
pages = c.search('ID=1')
```

## Development and Deployment

See the [Contribution guidelines for this project](CONTRIBUTING.md) for details on how to make changes to this library.

