API access is currently part of our paid Enterprise plan. However, if you have an idea for an integration or app and would like to become a development partner, please contact us at api@simscale.com!
Python >= 3.6
You can install the Python package directly from the hosted git repository.
To install the lastest version:
pip install git+https://github.com/SimScaleGmbH/simscale-python-sdk.gitTo install a specific version:
pip install git+https://github.com/SimScaleGmbH/simscale-python-sdk.git@0.0.12Then import the package:
import simscale_sdkInstall via Setuptools.
python setup.py install --user(or sudo python setup.py install to install the package for all users)
Then import the package:
import simscale_sdkThe examples folder contains executable code examples to demonstrate how the SDK can be used.
In order to run them the following environment variables need to be set:
export SIMSCALE_API_URL="https://api.simscale.com"
export SIMSCALE_API_KEY="your-api-key"