skillfed

Unified-python-sdk

Python Client SDK for Unified.to

unified-python-sdk v0.59.28 198.1K downloads/30d#9,741 on PyPI8
License unclear Active released

What it is and what it does

This is a Python client library for the Unified.to API, a service that aggregates access to multiple business software platforms (accounting, CRM, contacts, and others) through a single interface. The SDK wraps HTTP calls to Unified.to's endpoints and provides typed request/response models via pydantic, supporting both synchronous and asynchronous usage patterns.

You use it by instantiating a UnifiedTo client with an API key, then calling methods on resource objects (like accounting, contacts) to create, retrieve, update, or delete records. The SDK handles authentication, request serialization, and response parsing. It depends on httpx for HTTP transport and pydantic for data validation, and supports Python 3.10 and later.

Use it for:

  • Sync accounting data (invoices, bills, accounts, expenses) from multiple platforms into a single application.
  • Build a unified contact management interface that reads and writes to different CRM or contact systems.
  • Automate bank feed transactions and reconciliation across multiple accounting software providers.
  • Create middleware that translates requests to different accounting APIs without rewriting per-provider logic.
  • Retrieve and aggregate financial reports or transaction history from heterogeneous accounting backends.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Python SDK client for the Unified.to API, providing unified access to accounting, contacts, and other business data across multiple integrated services.

Yes, if you need to integrate with Unified.to's multi-provider API. The package is actively maintained, has low install friction, and supports current Python versions. However, verify the license terms in the repository first, as the license is not declared in package metadata. No known vulnerabilities as of 2026-08-14.

Install

unified-python-sdk on PyPI

pip

pip install unified-python-sdk

uv

uv add unified-python-sdk

poetry

poetry add unified-python-sdk

Installing Unified-python-sdk

Before you install

Low install friction with a pure-Python wheel. Active maintenance with a release on 2026-08-14. Supports modern Python versions (3.10 through 3.14) and depends on standard HTTP libraries (httpx, httpcore) and pydantic for data validation.

License in practice

License treatment is unclear—no SPDX identifier or raw license text is declared in the package metadata. Verify the actual license terms in the repository before use in proprietary or restricted contexts.

Quickstart

pip install Unified-python-sdk

from unified_python_sdk import UnifiedTo
from unified_python_sdk.models import shared

with UnifiedTo(
    security=shared.Security(jwt="<YOUR_API_KEY_HERE>")
) as unified_to:
    res = unified_to.accounting.create_accounting_account(
        request={"accounting_account": {}, "connection_id": ""}
    )
    print(res.accounting_account)

Requires Python 3.10 or later. API key from Unified.to service required for authentication.

Verify before relying

  • Whether the unclear license is intentional or a metadata gap—check the repository for LICENSE file.
  • Scope and completeness of available resources beyond accounting (description excerpt is truncated).
  • Whether async support covers all resource methods or only a subset.

Package facts

License not declared (unclear)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 3 — httpcore, httpx, pydantic
Maintenance actively maintained — 0 days since the last release
Last repo commit
First released
Downloads 198,070/month — #9,741 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: unified_python_sdk-0.59.28-py3-none-any.whl

Programming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14

Tags

unified api client pythonaccounting api sdkmulti-service integration sdkbusiness data api wrapperunified.to python clientaccounting contacts crm apiapi aggregation sdk
api-clientmulti-provider-integrationaccounting-finance

More WWW/HTTP packages