--- id: unitycatalog-client version: "0.5.1" license: Apache-2.0 license_treatment: permissive maintenance: active --- # unitycatalog-client — Official Python SDK for Unity Catalog License: permissive · Maintenance: active · Downloads: 1.7M/mo ## What it is and what it does The unitycatalog-client is an auto-generated async Python SDK that wraps the Unity Catalog REST API. Unity Catalog is an open-source, vendor-neutral metadata catalog designed to govern data and AI assets across multiple storage formats (Delta Lake, Apache Iceberg, Hudi, Parquet, JSON, CSV) and compute engines. The SDK lets you programmatically create and manage catalogs, schemas, tables, and other assets through a Python-native async interface. The library is built on aiohttp for non-blocking HTTP requests and pydantic for data validation. It supports Python 3.9 and later. The SDK is generated from an OpenAPI specification, which means its API surface mirrors the REST endpoints directly. You configure a client with a server URL, then instantiate API classes (CatalogsApi, SchemasApi, etc.) to make requests. Pagination is supported through continuation tokens for list operations. Use it for: - Automate catalog and schema creation and management in a data platform or data lake infrastructure. - Build governance workflows that query and update asset metadata, permissions, and ownership across multiple catalogs. - Integrate Unity Catalog metadata into data pipeline orchestration tools or custom data discovery applications. - Programmatically register and manage AI models, functions, and other assets alongside tabular data in a unified catalog. - Sync metadata between external systems and Unity Catalog via async batch operations. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Provides async Python bindings to the Unity Catalog REST API, enabling programmatic access to catalog, schema, table, and asset management across multiple data formats and compute engines. Yes, if you are building against a Unity Catalog server. The package is actively maintained, has no known vulnerabilities, low install friction, and provides the official async Python interface to the catalog API. It is suitable for production use in data governance, pipeline automation, and metadata management workflows. Not applicable if you do not have a Unity Catalog deployment to connect to. ## Install pip install unitycatalog-client uv add unitycatalog-client poetry add unitycatalog-client ## Installing unitycatalog-client Before you install: Low friction install with a pure-Python wheel. Actively maintained with a recent release (27 days old) and 3487 repository stars. Depends on standard async HTTP libraries (aiohttp, aiohttp-retry) and common utilities (pydantic, python-dateutil, urllib3, typing-extensions). License in practice: Apache 2.0 permissive license allows commercial use, modification, and distribution with minimal restrictions—suitable for most commercial and open-source projects. Quickstart: pip install unitycatalog-client from unitycatalog.client import Configuration, ApiClient, CatalogsApi config = Configuration() config.host = "http://localhost:8080/api/2.1/unity-catalog" client = ApiClient(configuration=config) catalogs_api = CatalogsApi(api_client=client) my_catalogs = await catalogs_api.list_catalogs() Requires a running Unity Catalog server to connect to; all API calls are async and must be awaited within an async context. Verify before relying: - Whether the generated OpenAPI client covers all Unity Catalog REST endpoints or if some are missing. - Performance characteristics and rate-limiting behavior when handling large paginated responses. - Compatibility with different Unity Catalog server versions and whether breaking changes are tracked. ## Package facts - License: Apache-2.0 (permissive) - Python support: supports_current - Install friction: low - Maintenance: active - Downloads: 1.7M/month (top 5,000 on PyPI) - Known vulnerabilities: none known ## Tags unity catalog python client, data catalog sdk, async catalog api, metadata management python, data governance api, iceberg delta lake catalog, ai asset catalog, data-catalog, metadata-management, async-api [View on SkillFed](https://skillfed.io/packages/unitycatalog-client) · [View on PyPI](https://pypi.org/project/unitycatalog-client/)