Metadata-Version: 1.2
Name: confluence-rest-library
Version: 0.3.0
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
Description: [![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
        with Confluence('https://site:8080/confluence', ('user', 'pass')) as c:
            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.
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
