pip install paradime-io
Generate your API key, secret and endpoint from Paradime workspace settings.
from paradime import Paradime
paradime = Paradime(
api_endpoint="API_ENDPOINT",
api_key="API_KEY",
api_secret="API_SECRET",
)
# Use the paradime client to interact with the API
For the full specification of the CLI, run:
paradime --help
Generate your API key, secret and endpoint from Paradime workspace settings. Then set the environment variables:
export PARADIME_API_ENDPOINT="YOUR_API_ENDPOINT"
export PARADIME_API_KEY="YOUR_API_KEY"
export PARADIME_API_SECRET="YOUR_API_SECRET
Find usage examples here to get started with the Paradime Python SDK.