Metadata-Version: 2.1
Name: statuscheck
Version: 2.0.2
Summary: Tool to check PAAS/SAAS status pages
Home-page: https://github.com/amureki/statuscheck
Author: Rustem Saiargaliev
Author-email: hi@amureki.me
License: Apache Software License 2.0
Description: 
        # statuscheck: Tool to check PAAS/SAAS status pages
        
        [![Build Status](https://travis-ci.org/amureki/statuscheck.svg?branch=master)](https://travis-ci.org/amureki/statuscheck)
        [![image](https://img.shields.io/pypi/v/statuscheck.svg)](https://pypi.org/project/statuscheck/)
        [![image](https://img.shields.io/pypi/l/statuscheck.svg)](https://pypi.org/project/statuscheck/)
        [![image](https://img.shields.io/pypi/pyversions/statuscheck.svg)](https://pypi.org/project/statuscheck/)
        
        ## Usage
        
        Install the latest release via `pip` or `pipenv`:
        
            $ pipenv install statuscheck
        
        Then just use it in your shell:
        
            $ statuscheck github
            No issues
        
            $ statuscheck slack
            Incident: We are having issues with some features including the Events API, notifications, unfurls, and threads
            More: https://status.slack.com/
        
        There is also an API available:
        
        
            >>> from statuscheck.check import get_statuscheck_api
        
            >>> api = get_statuscheck_api('slack')
            >>> api.get_status()
            "We're having issues with some features including the Events API, notifications, unfurls, and threads"
            >>> api.get_type()
            'Incident'
        
        
        Currently, all services that we support are defined [here](statuscheck/services/__init__.py).
        
Keywords: statuscheck
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
