Metadata-Version: 2.1
Name: statuscake
Version: 1.4.5
Summary: API for StatusCake
Home-page: https://github.com/trbs/statuscake/
Author: Trbs
Author-email: trbs@trbs.net
License: ASL
Keywords: statuscake
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Dist: requests (>=2.20.0)
Requires-Dist: six (>=1.11.0)

StatusCake
==========

.. image:: https://travis-ci.org/trbs/statuscake.svg?branch=master
    :target: https://travis-ci.org/trbs/statuscake

.. image:: https://img.shields.io/pypi/v/statuscake.svg
    :target: https://pypi.python.org/pypi/statuscake/
    :alt: Latest PyPI version

.. image:: https://img.shields.io/pypi/l/statuscake.svg
   :target: https://github.com/trbs/statuscake/blob/master/LICENSE

API for StatusCake

Installation
============
Create a virtualenv and install the requirements.

.. code-block:: bash

  $ python3 -m venv status_cake
  $ source status_cake/bin/activate
  (status_cake) $ pip install -r requirements.txt

Usage
=====
You will need a valid StatusCake `api_key` and `api_user` that you can find here:

- https://app.statuscake.com/User.php

Examples
========

.. code-block:: bash

  from statuscake import StatusCake
  client = StatusCake(api_key="my-api-key", api_user="my-user")
  client.get_all_tests()


