Synqly

raw JSON →
1.0.94 verified Mon Apr 27 auth: no python

SDK for Synqly APIs. Current version: 1.0.94. Releases are frequent, typically multiple times a month. Provides client libraries for Synqly's security integration platform.

pip install synqly
error ImportError: cannot import name 'SynqlyClient' from 'synqly'
cause Incorrect import path or outdated synqly version.
fix
Use 'from synqly import SynqlyClient' and ensure synqly is installed (pip install synqly).
error ModuleNotFoundError: No module named 'synqly'
cause Package not installed.
fix
Install synqly: pip install synqly
breaking The SDK requires Python >=3.7 and <4.0. No support for Python 3.6 or earlier.
fix Upgrade to Python 3.7+ or use a compatible version.
gotcha The 'token' parameter is required for authentication. Ensure your token has appropriate scopes.
fix Use a valid API token. For local development, set the SYNQLY_TOKEN environment variable.

Initialize the Synqly client with an API token and list integrations.

import os
from synqly import SynqlyClient

client = SynqlyClient(token=os.environ.get('SYNQLY_TOKEN', ''))
# Example: list integrations
integrations = client.integrations.list()
print(integrations)