This repository contains sample code for the Spritmonitor API endpoints. Individual API features have folders where you can find examples of usage.
- User account on Spritmonitor (Sign up here)
In order to run the samples in this repository you will need to setup some environment variables. You can create a new access bearer token on the Spritmonitor Password Page. The app token can be requested by the Spritmonitor support on the Spritmonitor Contact Page.
export BEARER_TOKEN='<your_bearer_token>'
export APP_TOKEN='<your_app_token>'Be sure to replace <your_bearer_token> with your own bearer token without the < >. The same applies for the app token.
You will need to have Python 3 installed to run this code samples. The Python samples use the requests package.
(Optionally) It is common and recommended not to install required packages globally, but locally under a project subfolder using venv.
python3 -m venv venv
source venv/bin/activateYou can install the package as follows:
pip install requests- For general questions related to the Spritmonitor API, please contact the Spritmonitor support via the Spritmonitor Contact Page.
- If there's an bug or issue with the sample code itself, please create a new issue here on GitHub.
We welcome pull requests that add meaningful additions to these code samples.
Copyright 2022 Fisch und Fischl GmbH
Licensed under the Apache License, Version 2.0: https://www.apache.org/licenses/LICENSE-2.0