Metadata-Version: 1.2
Name: confluence-archiving
Version: 0.2.1
Summary: A simple wrapper around the Confluence archiving plugin by Midoris 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| |PyPI version|
        
        Confluence Archiving Python Library
        ===================================
        
        This is a simple wrapper around the REST API which the Confluence
        Archiving plugin from midori provides.
        
        You can see the documentation on that API
        `here <http://www.midori-global.com/products/confluence-archiving-plugin/documentation/api>`__
        
        Installation
        ------------
        
        ::
        
            pip install confluence-archiving
        
        Usage
        -----
        
        .. code:: python
        
            from midori.archiving.client import ArchivingClient
            with ArchivingClient('http://localhost:8080/confluence', ('user', 'pass')) as client:
                content_status = client.get_page_content_status(1000)
        
        Development and Deployment
        --------------------------
        
        See the `Contribution guidelines for this project <CONTRIBUTING.md>`__
        for details on how to make changes to this library.
        
        Testing Locally
        ~~~~~~~~~~~~~~~
        
        For now there are only some basic unit tests included. These can be run
        using
        
        ::
        
            python setup.py test
        
        .. |Build Status| image:: https://travis-ci.org/DaveTCode/confluence-archiving-python-lib.svg?branch=master
           :target: https://travis-ci.org/DaveTCode/confluence-archiving-python-lib
        .. |PyPI version| image:: https://badge.fury.io/py/confluence-archiving.svg
           :target: https://badge.fury.io/py/confluence-archiving
        
Keywords: confluence,archiving
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Requires-Python: >=2.7,!=3.0,!=3.1,!=3.2,!=3.3,!=3.4
