Registry / http-networking / unified-python-sdk

unified-python-sdk

JSON →
library0.58.1pypypi✓ verified 83d ago

Python client SDK for Unified.to, a unified API platform that provides a single integration point for over 200 SaaS applications. Current version 0.57.42, requires Python >=3.10, actively maintained with frequent releases.

pip install unified-python-sdk
INSTALL
IMPORT
SIG · UNIFIED-PYTHON-SDK
U
unified-python-sdk
http-networkingpythonv0.58.1
Install
5.8s avg
Import
764ms
Disk
60MB
Pass rate
10/ 10
Env Coverage10 / 10
glibc
3.93.13
musl
3.93.13
Install & Compatibility
Where this runs
tested against v0.58.1 · pip install
no network on importno background threads
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
py 3.103.95 runs
installs and imports cleanly · install 0.0s · import 0.790s · 58.9MB
glibc
py 3.103.95 runs
installs and imports cleanly · install 5.8s · import 0.738s · 59MB
60MB installed
● package 60MB
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

UnifiedTo
from unified_python_sdk import UnifiedTo
from unified import UnifiedTo
Package name uses underscores, not hyphens.
UnifiedTo
from unified_python_sdk import UnifiedTo
import unified_python_sdk
Direct import of module does not expose client class; must import the class.

Initialize client with environment variables and fetch available integrations.

from unified_python_sdk import UnifiedTo client = UnifiedTo( client_id=os.environ.get('UNIFIED_CLIENT_ID', ''), client_secret=os.environ.get('UNIFIED_CLIENT_SECRET', ''), environment=os.environ.get('UNIFIED_ENVIRONMENT', 'sandbox') ) # Get list of integrations integrations = client.integration.list() print(integrations)
Debug
Known issues
breakingClient ID and Secret are now required constructor arguments. Previously an API key alone was supported.
fix
Pass client_id and client_secret to UnifiedTo() instead of api_key.
affects: >=0.40.0
deprecatedThe `api_key` parameter is deprecated and will be removed in a future version.
fix
Use client_id and client_secret for authentication.
affects: >=0.50.0
gotchaYou must set the environment to 'sandbox' for testing; default is 'production' and will fail if credentials are not provisioned for production.
fix
Provide environment='sandbox' in constructor for development.
affects: all
gotchaResource methods return lists, not paginated objects. For large datasets you must handle pagination manually using 'offset' and 'limit' parameters.
fix
Check the SDK documentation for pagination: use offset/limit parameters in list calls.
affects: all
Errors
Common errors & fixes
ImportError: cannot import name 'UnifiedTo' from 'unified_python_sdk'
Incorrect import path; the package uses underscore in the module name but the class is named UnifiedTo.
fix
Use: from unified_python_sdk import UnifiedTo
TypeError: __init__() got an unexpected keyword argument 'api_key'
The SDK removed api_key parameter in version 0.40.0. Now requires client_id and client_secret.
fix
Pass client_id and client_secret instead of api_key.
AuthenticationError: Invalid client credentials
Using environment='production' without proper production credentials (or using wrong client_id/client_secret).
fix
Set environment='sandbox' during development, or ensure client_id and client_secret are correct for production.
Upgrade
Version history
0.58.1latest on PyPI · released Jun 5, 2026
Audit
Dependencies
requestsrequiredHTTP client used for API calls
pydanticrequiredData validation and settings management
Agent activity
58 hits · last 30 days
node
54
Amazon
1
OpenAI (training)
1
Resources
unified-python-sdk — pip install unified-python-sdk · libregistry