StatusPage.oi API V1 library client for Python. Based on the documentaion from https://doers.statuspage.io/api/v1/
Provides most of the funcitonality for the http://statuspage.io api's via handy python code.
Statuspageio package can be installed either via pip:
$ pip install --upgrade statuspageio
You can install from the source code as well. First clone the repo and then execute:
$ python setup.py install
After installing, import statuspageio
package:
import statuspageio
import statuspageio
# Then we instantiate a client (as shown below)
Using this api without authentication gives an error
client = statuspageio.Client(api_key='<YOUR_PERSONAL_API_KEY>', page_id=<YOUR_PERSONAL_PAGE_ID')
- or
- client = statuspageio.Client(api_key='<YOUR_PERSONAL_API_KEY>', page_id=<YOUR_PERSONAL_PAGE_ID',organization_id=<YOUR_PERSONAL_ORGANIZATION_ID)
The following options are available while instantiating a client:
- api_key: Personal API Key
- page_id: Personal page id
- organization_id: Personal organization id, used for managing users.
- base_url: Base url for the api
- user_agent: Default user-agent for all requests
- timeout: Request timeout
- verbose: Verbose/debug mode
The library follows few architectural principles you should understand before digging deeper. 1. Interactions with resources are done via service objects. 2. Service objects are exposed as properties on client instances. 3. Service objects expose resource-oriented actions. 4. Actions return dictionaries that support attribute-style access, a la JavaScript (thanks to Bunch and it's form Munch).
For example, to interact with components API you will use
statuspageio.ComponentsService
, which you can get if you call:
client = statuspageio.Client(api_key='<YOUR_PERSONAL_API_KEY>', page_id=<YOUR_PERSONAL_PAGE_ID')
client.components # statuspageio.ComponentsService
To retrieve list of resources and use filtering you will call #list
method:
client = statuspageio.Client(api_key='<YOUR_PERSONAL_API_KEY>', page_id=<YOUR_PERSONAL_PAGE_ID')
client.components.list() # list(dict|Munch)
Documentation for every action can be found in statuspageio/services.py
file.
Sorry. These need to be written.
Thank you to the BaseCRM development team who created the majority of the code for this project. We forked the code as the aritectural style worked really well for this project. Please see https://github.com/basecrm/basecrm-python for more details
Thank you so much!
MIT
Report here.