Metadata-Version: 1.1
Name: statusio-python
Version: 1.1
Summary: A Python wrapper around the Status.io API
Home-page: https://github.com/statusio/statusio-python
Author: Status.io
Author-email: hello@status.io
License: Apache License 2.0
Description: Python Status.io
        ================
        
        A Python wrapper around the Status.io API.
        
        |Downloads|
        
        Introduction
        ------------
        
        This library provides a pure Python interface for the `Status.io
        API <http://developers.status.io/>`__. It works with Python versions
        from 2.6+.
        
        `Status.io <https://status.io>`__ provides hosted system status pages.
        
        Installing
        ----------
        
        You can install statusio-python using::
        
            $ pip install statusio-python
        
        Documentation
        -------------
        
        View the last release API documentation at:
        http://developers.status.io
        
        Using
        -----
        
        The library provides a Python wrapper around the Status.io API.
        
        API
        ~~~
        
        The API is exposed via the ``statusio.Api`` class.
        
        To create an instance of the ``statusio.Api`` with yout credentials:
        
            >>> import statusio
            >>> api = statusio.Api(api_id='api_id',
                                  api_key='api_key')
        
        To retrieve your status page summary:
        
            >>> summary = api.StatusSummary('status_page_id')
            >>> print(summary)
        
        View the full API documentation::
        
            $ pydoc statusio.Api
        
        .. |Downloads| image:: https://img.shields.io/pypi/v/statusio-python.svg
           :target: https://pypi.python.org/pypi/statusio-python/
        
Keywords: status.io api statusio
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Internet
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
