freshcrate
Skin:/
Home > Developer Tools > unstructured-client

unstructured-client

Python Client SDK for Unstructured API

Why this rank:Strong adoptionRecent releaseHealthy release cadence

Description

<h3 align="center"> <img src="https://raw.githubusercontent.com/Unstructured-IO/unstructured/main/img/unstructured_logo.png" height="200" > </h3> <div align="center"> <a href="https://speakeasyapi.dev/"><img src="https://custom-icon-badges.demolab.com/badge/-Built%20By%20Speakeasy-212015?style=for-the-badge&logoColor=FBE331&logo=speakeasy&labelColor=545454" /></a> </div> <div align="center"> </div> <h2 align="center"> <p>Python SDK for the Unstructured API</p> </h2> This is a HTTP client for the [Unstructured Platform API](https://docs.unstructured.io/platform-api/overview). You can sign up [here](https://unstructured.io/developers) and process 1000 free pages per day for 14 days. Please refer to the our documentation for a full guide on integrating the [Workflow Endpoint](https://docs.unstructured.io/platform-api/api/overview) and [Partition Endpoint](https://docs.unstructured.io/platform-api/partition-api/sdk-python) into your Python code. <!-- Start Summary [summary] --> ## Summary <!-- End Summary [summary] --> <!-- Start Table of Contents [toc] --> ## Table of Contents <!-- $toc-max-depth=2 --> * [SDK Installation](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#sdk-installation) * [Retries](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#retries) * [Error Handling](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#error-handling) * [Custom HTTP Client](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#custom-http-client) * [IDE Support](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#ide-support) * [SDK Example Usage](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#sdk-example-usage) * [Configuration](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#configuration) * [File uploads](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#file-uploads) * [Resource Management](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#resource-management) * [Debugging](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#debugging) <!-- End Table of Contents [toc] --> <!-- Start SDK Installation [installation] --> ## SDK Installation > [!NOTE] > **Python version upgrade policy** > > Once a Python version reaches its [official end of life date](https://devguide.python.org/versions/), a 3-month grace period is provided for users to upgrade. Following this grace period, the minimum python version supported in the SDK will be updated. The SDK can be installed with *uv*, *pip*, or *poetry* package managers. ### uv *uv* is a fast Python package installer and resolver, designed as a drop-in replacement for pip and pip-tools. It's recommended for its speed and modern Python tooling capabilities. ```bash uv add unstructured-client ``` ### PIP *PIP* is the default package installer for Python, enabling easy installation and management of packages from PyPI via the command line. ```bash pip install unstructured-client ``` ### Poetry *Poetry* is a modern tool that simplifies dependency management and package publishing by using a single `pyproject.toml` file to handle project metadata and dependencies. ```bash poetry add unstructured-client ``` ### Shell and script usage with `uv` You can use this SDK in a Python shell with [uv](https://docs.astral.sh/uv/) and the `uvx` command that comes with it like so: ```shell uvx --from unstructured-client python ``` It's also possible to write a standalone Python script without needing to set up a whole project like so: ```python #!/usr/bin/env -S uv run --script # /// script # requires-python = ">=3.9" # dependencies = [ # "unstructured-client", # ] # /// from unstructured_client import UnstructuredClient sdk = UnstructuredClient( # SDK arguments ) # Rest of script here... ``` Once that is saved to a file, you can run it with `uv run script.py` where `script.py` can be replaced with the actual file name. <!-- End SDK Installation [installation] --> <!-- Start Retries [retries] --> ## Retries Some of the endpoints in this SDK support retries. If you use the SDK without any configuration, it will fall back to the default retry strategy provided by the API. However, the default retry strategy can be overridden on a per-operation basis, or across the entire SDK. To change the default retry strategy for a single API call, simply provide a `RetryConfig` object to the call: ```python from unstructured_client import UnstructuredClient from unstructured_client.utils import BackoffStrategy, RetryConfig with UnstructuredClient() as uc_client: res = uc_client.destinations.create_connection_check_destinations(request={ "destination_id": "cb9e35c1-0b04-4d98-83fa-fa6241323f96", }, RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False))

Release History

VersionChangesUrgencyDate
v0.45.0### Features * Make the split-PDF `httpx.AsyncClient` connection-pool limits configurable via env vars: `UNSTRUCTURED_CLIENT_MAX_CONNECTIONS` (default `100`), `UNSTRUCTURED_CLIENT_MAX_KEEPALIVE_CONNECTIONS` (default `20`), and `UNSTRUCTURED_CLIENT_KEEPALIVE_EXPIRY` (default `5.0`s). Defaults match httpx, so behavior is unchanged unless set. Useful when deploying behind a connect-time-only load balancer (e.g. Kubernetes ClusterIP without a mesh) where shorter keepalives force connections to redisHigh6/5/2026
v0.44.1### Features * Add `min_attempts` and `absolute_max_elapsed_time_ms` fields to `BackoffStrategy`. `min_attempts` is the minimum number of retry attempts that must fire before `max_elapsed_time` is honored; defaults to `0` (preserves existing behavior). `absolute_max_elapsed_time_ms` caps when a new retry can start (does not interrupt in-flight requests); defaults to `None`. Together these close a short-circuit where a single slow first attempt could exhaust the retry budget before any retry fireHigh5/27/2026
v0.44.0## 0.44.0 ### Breaking changes * Removed deprecated connector config models from the SDK (e.g. `S3SourceConnectorConfig`, `AzureDestinationConnectorConfig`). Pass connector configs as plain dicts with arbitrary fields. The SDK is no longer coupled to backend connector schemas — new fields work without an SDK upgrade.High5/7/2026
0.43.2Imported from PyPI (0.43.2)Low4/21/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Medium4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Low4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Low4/4/2026
v0.43.2## What's Changed * Enable trusted publishing by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/337 **Full Changelog**: https://github.com/Unstructured-IO/unstructured-python-client/compare/v0.43.1...v0.43.2Low4/4/2026
v0.43.1## What's Changed * Migrate to uv, drop 3.9 and 3.10, fix tests by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/335 * SDK correctness and resilience improvements by @PastelStorm in https://github.com/Unstructured-IO/unstructured-python-client/pull/336 ## New Contributors * @PastelStorm made their first contribution in https://github.com/Unstructured-IO/unstructured-python-client/pull/335 **Full Changelog**: https://github.com/Unstructured-IO/unstrucMedium4/4/2026
v0.42.12# Generated by Speakeasy CLI ## 2026-03-25 20:30:00 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.601.0 (2.680.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.12] . ### Releases - [PyPI v0.42.12] https://pypi.org/project/unstructured-client/0.42.12 - .Medium3/25/2026
v0.42.11# Generated by Speakeasy CLI ## 2026-03-25 16:00:00 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.601.0 (2.680.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.11] . ### Releases - [PyPI v0.42.11] https://pypi.org/project/unstructured-client/0.42.11 - .Medium3/25/2026
v0.42.10# Generated by Speakeasy CLI ## 2026-02-03 16:49:02 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.601.0 (2.680.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.10] . ### Releases - [PyPI v0.42.10] https://pypi.org/project/unstructured-client/0.42.10 - .Low2/3/2026
v0.42.9# Generated by Speakeasy CLI ## 2026-01-18 20:53:05 ### Changes Based on: - OpenAPI Doc 1.2.28 - Speakeasy CLI 1.601.0 (2.680.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.9] . ### Releases - [PyPI v0.42.9] https://pypi.org/project/unstructured-client/0.42.9 - . Publishing CompletedLow1/18/2026
v0.42.8# Generated by Speakeasy CLI ## 2026-01-14 21:53:13 ### Changes Based on: - OpenAPI Doc 1.2.23 - Speakeasy CLI 1.601.0 (2.680.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.8] . ### Releases - [PyPI v0.42.8] https://pypi.org/project/unstructured-client/0.42.8 - . Publishing CompletedLow1/14/2026
v0.42.6# Generated by Speakeasy CLI ## 2025-12-17 03:48:44 ### Changes Based on: - OpenAPI Doc 1.2.23 - Speakeasy CLI 1.601.0 (2.680.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.6] . ### Releases - [PyPI v0.42.6] https://pypi.org/project/unstructured-client/0.42.6 - . Publishing CompletedLow12/17/2025
v0.42.5# Generated by Speakeasy CLI ## 2025-12-16 18:30:32 ### Changes Based on: - OpenAPI Doc 1.2.23 - Speakeasy CLI 1.601.0 (2.680.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.5] . ### Releases - [PyPI v0.42.5] https://pypi.org/project/unstructured-client/0.42.5 - . Publishing CompletedLow12/16/2025
v0.42.4# Generated by Speakeasy CLI ## 2025-11-14 00:11:01 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.601.0 (2.680.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.3] . ### Releases - [PyPI v0.42.4] https://pypi.org/project/unstructured-client/0.42.4 - . Publishing CompletedLow11/14/2025
v0.42.3# Generated by Speakeasy CLI ## 2025-08-12 00:11:01 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.601.0 (2.680.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.3] . ### Releases - [PyPI v0.42.3] https://pypi.org/project/unstructured-client/0.42.3 - . Publishing CompletedLow8/12/2025
v0.42.2# Generated by Speakeasy CLI ## 2025-08-07 00:11:58 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.598.3 (2.674.3) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.2] . ### Releases - [PyPI v0.42.2] https://pypi.org/project/unstructured-client/0.42.2 - . Publishing CompletedLow8/7/2025
v0.42.1# Generated by Speakeasy CLI ## 2025-08-06 00:11:51 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.598.0 (2.674.1) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.1] . ### Releases - [PyPI v0.42.1] https://pypi.org/project/unstructured-client/0.42.1 - . Publishing CompletedLow8/6/2025
v0.42.0# Generated by Speakeasy CLI ## 2025-08-01 00:13:22 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.595.0 (2.670.1) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.42.0] . ### Releases - [PyPI v0.42.0] https://pypi.org/project/unstructured-client/0.42.0 - . Publishing CompletedLow8/1/2025
v0.41.0# Generated by Speakeasy CLI ## 2025-07-25 00:27:12 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.589.0 (2.664.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.41.0] . ### Releases - [PyPI v0.41.0] https://pypi.org/project/unstructured-client/0.41.0 - . Publishing CompletedLow7/25/2025
v0.40.0# Generated by Speakeasy CLI ## 2025-07-23 19:20:27 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.552.0 (2.610.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.40.0] . ### Releases - [PyPI v0.40.0] https://pypi.org/project/unstructured-client/0.40.0 - . Publishing CompletedLow7/23/2025
v0.39.1# Generated by Speakeasy CLI ## 2025-07-16 19:20:27 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.552.0 (2.610.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.39.1] . ### Releases - [PyPI v0.39.1] https://pypi.org/project/unstructured-client/0.39.1 - . Publishing CompletedLow7/16/2025
v0.38.1# Generated by Speakeasy CLI ## 2025-07-03 14:31:04 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.552.0 (2.610.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.38.1] . ### Releases - [PyPI v0.38.1] https://pypi.org/project/unstructured-client/0.38.1 - . Publishing CompletedLow7/3/2025
v0.37.4# Generated by Speakeasy CLI ## 2025-07-01 14:45:04 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.552.0 (2.610.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.37.4] . ### Releases - [PyPI v0.37.4] https://pypi.org/project/unstructured-client/0.37.4 - . Publishing CompletedLow7/1/2025
v0.37.2# Generated by Speakeasy CLI ## 2025-06-24 15:26:33 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.552.0 (2.610.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.37.2] . ### Releases - [PyPI v0.37.2] https://pypi.org/project/unstructured-client/0.37.2 - . Publishing CompletedLow6/24/2025
v0.37.1# Generated by Speakeasy CLI ## 2025-06-23 18:31:52 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.552.0 (2.610.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.37.1] . ### Releases - [PyPI v0.37.1] https://pypi.org/project/unstructured-client/0.37.1 - . Publishing CompletedLow6/23/2025
v0.36.0# Generated by Speakeasy CLI ## 2025-05-28 19:09:30 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.552.0 (2.610.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.36.0] . ### Releases - [PyPI v0.36.0] https://pypi.org/project/unstructured-client/0.36.0 - . Publishing CompletedLow5/29/2025
v0.35.0# Generated by Speakeasy CLI ## 2025-05-14 11:39:54 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.544.0 (2.599.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.35.0] . ### Releases - [PyPI v0.35.0] https://pypi.org/project/unstructured-client/0.35.0 - . Publishing CompletedLow5/14/2025
v0.34.0# Generated by Speakeasy CLI ## 2025-04-22 15:11:11 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.537.0 (2.588.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.34.0] . ### Releases - [PyPI v0.34.0] https://pypi.org/project/unstructured-client/0.34.0 - . Publishing CompletedLow4/22/2025
v0.33.1# Generated by Speakeasy CLI ## 2025-04-21 18:53:16 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.535.1 (2.585.2) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.33.1] . ### Releases - [PyPI v0.33.1] https://pypi.org/project/unstructured-client/0.33.1 - . Publishing CompletedLow4/21/2025
v0.33.0# Generated by Speakeasy CLI ## 2025-04-17 19:48:46 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.535.0 (2.585.1) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.33.0] . ### Releases - [PyPI v0.33.0] https://pypi.org/project/unstructured-client/0.33.0 - . Publishing CompletedLow4/18/2025
v0.32.4# Generated by Speakeasy CLI ## 2025-04-17 00:10:08 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.533.0 (2.578.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.32.4] . ### Releases - [PyPI v0.32.4] https://pypi.org/project/unstructured-client/0.32.4 - . Publishing CompletedLow4/17/2025
v0.32.3# Generated by Speakeasy CLI ## 2025-04-07 20:54:46 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.531.0 (2.568.2) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.32.3] . ### Releases - [PyPI v0.32.3] https://pypi.org/project/unstructured-client/0.32.3 - . Publishing CompletedLow4/7/2025
v0.32.2# Generated by Speakeasy CLI ## 2025-04-07 00:10:24 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.529.1 (2.566.5) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.32.2] . ### Releases - [PyPI v0.32.2] https://pypi.org/project/unstructured-client/0.32.2 - . Publishing CompletedLow4/7/2025
v0.32.1# Generated by Speakeasy CLI ## 2025-04-03 00:09:46 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.528.1 (2.565.1) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.32.1] . ### Releases - [PyPI v0.32.1] https://pypi.org/project/unstructured-client/0.32.1 - . Publishing CompletedLow4/3/2025
v0.32.0# Generated by Speakeasy CLI ## 2025-03-28 19:00:48 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.526.0 (2.563.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.32.0] . ### Releases - [PyPI v0.32.0] https://pypi.org/project/unstructured-client/0.32.0 - . Publishing CompletedLow3/28/2025
v0.31.6# Generated by Speakeasy CLI ## 2025-03-27 20:41:12 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.525.1 (2.562.2) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.31.6] . ### Releases - [PyPI v0.31.6] https://pypi.org/project/unstructured-client/0.31.6 - . Publishing CompletedLow3/27/2025
v0.31.5# Generated by Speakeasy CLI ## 2025-03-27 00:09:46 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.524.0 (2.562.2) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.31.5] . ### Releases - [PyPI v0.31.5] https://pypi.org/project/unstructured-client/0.31.5 - . Publishing CompletedLow3/27/2025
v0.31.4# Generated by Speakeasy CLI ## 2025-03-26 17:03:10 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.523.2 (2.560.1) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.31.4] . ### Releases - [PyPI v0.31.4] https://pypi.org/project/unstructured-client/0.31.4 - . Publishing CompletedLow3/26/2025
v0.31.3# Generated by Speakeasy CLI ## 2025-03-20 22:25:29 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.521.1 (2.558.5) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.31.3] . ### Releases - [PyPI v0.31.3] https://pypi.org/project/unstructured-client/0.31.3 - . Publishing CompletedLow3/20/2025
v0.31.2# Generated by Speakeasy CLI ## 2025-03-20 00:09:37 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.521.0 (2.558.2) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.31.2] . ### Releases - [PyPI v0.31.2] https://pypi.org/project/unstructured-client/0.31.2 - . Publishing CompletedLow3/20/2025
v0.31.1# Generated by Speakeasy CLI ## 2025-03-06 20:17:13 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.513.0 (2.545.1) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.31.1] . ### Releases - [PyPI v0.31.1] https://pypi.org/project/unstructured-client/0.31.1 - . Publishing CompletedLow3/7/2025
v0.30.6# Generated by Speakeasy CLI ## 2025-02-26 21:29:54 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.505.0 (2.531.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.30.6] . ### Releases - [PyPI v0.30.6] https://pypi.org/project/unstructured-client/0.30.6 - . Publishing CompletedLow2/26/2025
v0.31.0# Generated by Speakeasy CLI ## 2025-02-24 00:09:35 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.501.0 (2.522.1) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.30.4] . ### Releases - [PyPI v0.30.4] https://pypi.org/project/unstructured-client/0.30.4 - . Publishing CompletedLow2/25/2025
v0.30.3# Generated by Speakeasy CLI ## 2025-02-21 00:09:34 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.498.1 (2.518.1) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.30.3] . ### Releases - [PyPI v0.30.3] https://pypi.org/project/unstructured-client/0.30.3 - . Publishing CompletedLow2/21/2025
v0.30.2# Generated by Speakeasy CLI ## 2025-02-20 17:16:49 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.498.0 (2.518.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.30.2] . ### Releases - [PyPI v0.30.2] https://pypi.org/project/unstructured-client/0.30.2 - . Publishing CompletedLow2/20/2025
v0.30.1# Generated by Speakeasy CLI ## 2025-02-15 00:09:23 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.493.0 (2.512.4) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.30.1] . ### Releases - [PyPI v0.30.1] https://pypi.org/project/unstructured-client/0.30.1 - . Publishing CompletedLow2/16/2025
v0.30.0# Generated by Speakeasy CLI ## 2025-02-12 00:09:11 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.488.0 (2.506.0) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.30.0] . ### Releases - [PyPI v0.30.0] https://pypi.org/project/unstructured-client/0.30.0 - . Publishing CompletedLow2/13/2025
v0.29.0# Generated by Speakeasy CLI ## 2025-01-15 00:08:51 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.468.6 (2.493.13) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.29.0] . ### Releases - [PyPI v0.29.0] https://pypi.org/project/unstructured-client/0.29.0 - . Publishing CompletedLow1/15/2025
v0.28.1# Generated by Speakeasy CLI ## 2024-11-26 00:09:45 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.445.2 (2.461.4) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.28.1] . ### Releases - [PyPI v0.28.1] https://pypi.org/project/unstructured-client/0.28.1 - . Publishing CompletedLow11/26/2024
v0.28.0# Generated by Speakeasy CLI ## 2024-11-21 00:09:58 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.441.1 (2.461.2) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.28.0] . ### Releases - [PyPI v0.28.0] https://pypi.org/project/unstructured-client/0.28.0 - . Publishing CompletedLow11/21/2024
v0.27.0# Generated by Speakeasy CLI ## 2024-11-04 00:09:48 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.424.0 (2.445.1) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.27.0] . ### Releases - [PyPI v0.27.0] https://pypi.org/project/unstructured-client/0.27.0 - . Publishing CompletedLow11/4/2024
v0.26.2# Generated by Speakeasy CLI ## 2024-10-28 00:09:56 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.422.1 (2.438.15) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.26.2] . ### Releases - [PyPI v0.26.2] https://pypi.org/project/unstructured-client/0.26.2 - . Publishing CompletedLow10/28/2024
v0.26.1# Generated by Speakeasy CLI ## 2024-10-12 17:36:38 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.418.1 (2.438.3) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.26.1] . ### Releases - [PyPI v0.26.1] https://pypi.org/project/unstructured-client/0.26.1 - . Publishing CompletedLow10/12/2024
v0.26.0# Generated by Speakeasy CLI ## 2024-10-07 00:09:40 ### Changes Based on: - OpenAPI Doc - Speakeasy CLI 1.410.0 (2.434.1) https://github.com/speakeasy-api/speakeasy ### Generated - [python v0.26.0] . ### Releases - [PyPI v0.26.0] https://pypi.org/project/unstructured-client/0.26.0 - . Publishing CompletedLow10/7/2024

Dependencies & License Audit

Loading dependencies...

Similar Packages

modalPython client library for Modalmain@2026-06-05
anthropicThe official Python library for the anthropic APIv0.106.0
pipThe PyPA recommended tool for installing Python packages.main@2026-06-05
openinference-semantic-conventionsOpenInference Semantic Conventionspython-openinference-instrumentation-pipecat-v2.0.0
openinference-instrumentationOpenInference instrumentation utilitiespython-openinference-instrumentation-pipecat-v2.0.0

More in Developer Tools

mypyOptional static typing for Python
pipThe PyPA recommended tool for installing Python packages.
anthropicThe official Python library for the anthropic API
openinference-instrumentationOpenInference instrumentation utilities