Skip to content

paradime-io/paradime-python-sdk

Repository files navigation

Paradime

Paradime - Python SDK

Installation

pip install paradime-io

SDK Usage

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

CLI Usage

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

Examples

Find usage examples here to get started with the Paradime Python SDK.