Authorization with Python
If you are integrating with your application, you can utilize Python SDK for V2 API. All you need to do is define API Keys on your environment and,
pip install constructor-groupsfrom constructor_groups.client import APIClient
# API client
client = APIClient()
# Set your domain
client.set_domain("<DOMAIN>")
# Set your credentials
client.set_credentials(
access_key="<ACCESS_KEY>",
secret_key="<SECRET_KEY>"
)Last updated