修改为东南天坐标系

This commit is contained in:
2026-01-20 09:49:52 +08:00
parent 9538757047
commit 333fad40ac
7201 changed files with 1030888 additions and 85410 deletions

View File

@@ -0,0 +1,570 @@
Metadata-Version: 2.4
Name: unstructured-client
Version: 0.42.8
Summary: Python Client SDK for Unstructured API
License: MIT
License-File: LICENSE.md
Author: Unstructured
Requires-Python: >=3.9.2
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: aiofiles (>=24.1.0)
Requires-Dist: cryptography (>=3.1)
Requires-Dist: httpcore (>=1.0.9)
Requires-Dist: httpx (>=0.27.0)
Requires-Dist: pydantic (>=2.11.2)
Requires-Dist: pypdf (>=6.2.0)
Requires-Dist: requests-toolbelt (>=1.0.0)
Project-URL: Repository, https://github.com/Unstructured-IO/unstructured-python-client.git
Description-Content-Type: text/markdown
<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))
assert res.dag_node_connection_check is not None
# Handle response
print(res.dag_node_connection_check)
```
If you'd like to override the default retry strategy for all operations that support retries, you can use the `retry_config` optional parameter when initializing the SDK:
```python
from unstructured_client import UnstructuredClient
from unstructured_client.utils import BackoffStrategy, RetryConfig
with UnstructuredClient(
retry_config=RetryConfig("backoff", BackoffStrategy(1, 50, 1.1, 100), False),
) as uc_client:
res = uc_client.destinations.create_connection_check_destinations(request={
"destination_id": "cb9e35c1-0b04-4d98-83fa-fa6241323f96",
})
assert res.dag_node_connection_check is not None
# Handle response
print(res.dag_node_connection_check)
```
<!-- End Retries [retries] -->
<!-- Start Error Handling [errors] -->
## Error Handling
[`UnstructuredClientError`](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/./src/unstructured_client/models/errors/unstructuredclienterror.py) is the base class for all HTTP error responses. It has the following properties:
| Property | Type | Description |
| ------------------ | ---------------- | --------------------------------------------------------------------------------------- |
| `err.message` | `str` | Error message |
| `err.status_code` | `int` | HTTP response status code eg `404` |
| `err.headers` | `httpx.Headers` | HTTP response headers |
| `err.body` | `str` | HTTP body. Can be empty string if no body is returned. |
| `err.raw_response` | `httpx.Response` | Raw HTTP response |
| `err.data` | | Optional. Some errors may contain structured data. [See Error Classes](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#error-classes). |
### Example
```python
from unstructured_client import UnstructuredClient
from unstructured_client.models import errors
with UnstructuredClient() as uc_client:
res = None
try:
res = uc_client.destinations.create_connection_check_destinations(request={
"destination_id": "cb9e35c1-0b04-4d98-83fa-fa6241323f96",
})
assert res.dag_node_connection_check is not None
# Handle response
print(res.dag_node_connection_check)
except errors.UnstructuredClientError as e:
# The base class for HTTP error responses
print(e.message)
print(e.status_code)
print(e.body)
print(e.headers)
print(e.raw_response)
# Depending on the method different errors may be thrown
if isinstance(e, errors.HTTPValidationError):
print(e.data.detail) # Optional[errors.Detail]
```
### Error Classes
**Primary errors:**
* [`UnstructuredClientError`](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/./src/unstructured_client/models/errors/unstructuredclienterror.py): The base class for HTTP error responses.
* [`HTTPValidationError`](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/./src/unstructured_client/models/errors/httpvalidationerror.py): Validation Error. Status code `422`.
<details><summary>Less common errors (6)</summary>
<br />
**Network errors:**
* [`httpx.RequestError`](https://www.python-httpx.org/exceptions/#httpx.RequestError): Base class for request errors.
* [`httpx.ConnectError`](https://www.python-httpx.org/exceptions/#httpx.ConnectError): HTTP client was unable to make a request to a server.
* [`httpx.TimeoutException`](https://www.python-httpx.org/exceptions/#httpx.TimeoutException): HTTP request timed out.
**Inherit from [`UnstructuredClientError`](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/./src/unstructured_client/models/errors/unstructuredclienterror.py)**:
* [`ServerError`](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/./src/unstructured_client/models/errors/servererror.py): Server Error. Status code `5XX`. Applicable to 1 of 30 methods.*
* [`ResponseValidationError`](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/./src/unstructured_client/models/errors/responsevalidationerror.py): Type mismatch between the response data and the expected Pydantic model. Provides access to the Pydantic validation error via the `cause` attribute.
</details>
\* Check [the method documentation](https://github.com/Unstructured-IO/unstructured-python-client/blob/master/#available-resources-and-operations) to see if the error is applicable.
<!-- End Error Handling [errors] -->
<!-- Start Custom HTTP Client [http-client] -->
## Custom HTTP Client
The Python SDK makes API calls using the [httpx](https://www.python-httpx.org/) HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with your own HTTP client instance.
Depending on whether you are using the sync or async version of the SDK, you can pass an instance of `HttpClient` or `AsyncHttpClient` respectively, which are Protocol's ensuring that the client has the necessary methods to make API calls.
This allows you to wrap the client with your own custom logic, such as adding custom headers, logging, or error handling, or you can just pass an instance of `httpx.Client` or `httpx.AsyncClient` directly.
For example, you could specify a header for every request that this sdk makes as follows:
```python
from unstructured_client import UnstructuredClient
import httpx
http_client = httpx.Client(headers={"x-custom-header": "someValue"})
s = UnstructuredClient(client=http_client)
```
or you could wrap the client with your own custom logic:
```python
from unstructured_client import UnstructuredClient
from unstructured_client.httpclient import AsyncHttpClient
import httpx
class CustomClient(AsyncHttpClient):
client: AsyncHttpClient
def __init__(self, client: AsyncHttpClient):
self.client = client
async def send(
self,
request: httpx.Request,
*,
stream: bool = False,
auth: Union[
httpx._types.AuthTypes, httpx._client.UseClientDefault, None
] = httpx.USE_CLIENT_DEFAULT,
follow_redirects: Union[
bool, httpx._client.UseClientDefault
] = httpx.USE_CLIENT_DEFAULT,
) -> httpx.Response:
request.headers["Client-Level-Header"] = "added by client"
return await self.client.send(
request, stream=stream, auth=auth, follow_redirects=follow_redirects
)
def build_request(
self,
method: str,
url: httpx._types.URLTypes,
*,
content: Optional[httpx._types.RequestContent] = None,
data: Optional[httpx._types.RequestData] = None,
files: Optional[httpx._types.RequestFiles] = None,
json: Optional[Any] = None,
params: Optional[httpx._types.QueryParamTypes] = None,
headers: Optional[httpx._types.HeaderTypes] = None,
cookies: Optional[httpx._types.CookieTypes] = None,
timeout: Union[
httpx._types.TimeoutTypes, httpx._client.UseClientDefault
] = httpx.USE_CLIENT_DEFAULT,
extensions: Optional[httpx._types.RequestExtensions] = None,
) -> httpx.Request:
return self.client.build_request(
method,
url,
content=content,
data=data,
files=files,
json=json,
params=params,
headers=headers,
cookies=cookies,
timeout=timeout,
extensions=extensions,
)
s = UnstructuredClient(async_client=CustomClient(httpx.AsyncClient()))
```
<!-- End Custom HTTP Client [http-client] -->
<!-- Start IDE Support [idesupport] -->
## IDE Support
### PyCharm
Generally, the SDK will work well with most IDEs out of the box. However, when using PyCharm, you can enjoy much better integration with Pydantic by installing an additional plugin.
- [PyCharm Pydantic Plugin](https://docs.pydantic.dev/latest/integrations/pycharm/)
<!-- End IDE Support [idesupport] -->
<!-- Start SDK Example Usage [usage] -->
## SDK Example Usage
### Example
```python
# Synchronous Example
from unstructured_client import UnstructuredClient
with UnstructuredClient() as uc_client:
res = uc_client.destinations.create_connection_check_destinations(request={
"destination_id": "cb9e35c1-0b04-4d98-83fa-fa6241323f96",
})
assert res.dag_node_connection_check is not None
# Handle response
print(res.dag_node_connection_check)
```
</br>
The same SDK client can also be used to make asynchronous requests by importing asyncio.
```python
# Asynchronous Example
import asyncio
from unstructured_client import UnstructuredClient
async def main():
async with UnstructuredClient() as uc_client:
res = await uc_client.destinations.create_connection_check_destinations_async(request={
"destination_id": "cb9e35c1-0b04-4d98-83fa-fa6241323f96",
})
assert res.dag_node_connection_check is not None
# Handle response
print(res.dag_node_connection_check)
asyncio.run(main())
```
<!-- End SDK Example Usage [usage] -->
Refer to the [API parameters page](https://docs.unstructured.io/api-reference/api-services/api-parameters) for all available parameters.
## Configuration
### Splitting PDF by pages
See [page splitting](https://docs.unstructured.io/api-reference/api-services/sdk#page-splitting) for more details.
In order to speed up processing of large PDF files, the client splits up PDFs into smaller files, sends these to the API concurrently, and recombines the results. `split_pdf_page` can be set to `False` to disable this.
The amount of workers utilized for splitting PDFs is dictated by the `split_pdf_concurrency_level` parameter, with a default of 5 and a maximum of 15 to keep resource usage and costs in check. The splitting process leverages `asyncio` to manage concurrency effectively.
The size of each batch of pages (ranging from 2 to 20) is internally determined based on the concurrency level and the total number of pages in the document. Because the splitting process uses `asyncio` the client can encounter event loop issues if it is nested in another async runner, like running in a `gevent` spawned task. Instead, this is safe to run in multiprocessing workers (e.g., using `multiprocessing.Pool` with `fork` context).
Example:
```python
req = operations.PartitionRequest(
partition_parameters=shared.PartitionParameters(
files=files,
strategy="fast",
languages=["eng"],
split_pdf_concurrency_level=8
)
)
```
### Sending specific page ranges
When `split_pdf_page=True` (the default), you can optionally specify a page range to send only a portion of your PDF to be extracted. The parameter takes a list of two integers to specify the range, inclusive. A ValueError is thrown if the page range is invalid.
Example:
```python
req = operations.PartitionRequest(
partition_parameters=shared.PartitionParameters(
files=files,
strategy="fast",
languages=["eng"],
split_pdf_page_range=[10,15],
)
)
```
### Splitting PDF by pages - strict mode
When `split_pdf_allow_failed=False` (the default), any errors encountered during sending parallel request will break the process and raise an exception.
When `split_pdf_allow_failed=True`, the process will continue even if some requests fail, and the results will be combined at the end (the output from the errored pages will not be included).
Example:
```python
req = operations.PartitionRequest(
partition_parameters=shared.PartitionParameters(
files=files,
strategy="fast",
languages=["eng"],
split_pdf_allow_failed=True,
)
)
```
<!-- Start File uploads [file-upload] -->
## File uploads
Certain SDK methods accept file objects as part of a request body or multi-part request. It is possible and typically recommended to upload files as a stream rather than reading the entire contents into memory. This avoids excessive memory consumption and potentially crashing with out-of-memory errors when working with very large files. The following example demonstrates how to attach a file stream to a request.
> [!TIP]
>
> For endpoints that handle file uploads bytes arrays can also be used. However, using streams is recommended for large files.
>
```python
from unstructured_client import UnstructuredClient
with UnstructuredClient() as uc_client:
res = uc_client.jobs.create_job(request={
"body_create_job": {
"request_data": "<value>",
},
})
assert res.job_information is not None
# Handle response
print(res.job_information)
```
<!-- End File uploads [file-upload] -->
<!-- Start Resource Management [resource-management] -->
## Resource Management
The `UnstructuredClient` class implements the context manager protocol and registers a finalizer function to close the underlying sync and async HTTPX clients it uses under the hood. This will close HTTP connections, release memory and free up other resources held by the SDK. In short-lived Python programs and notebooks that make a few SDK method calls, resource management may not be a concern. However, in longer-lived programs, it is beneficial to create a single SDK instance via a [context manager][context-manager] and reuse it across the application.
[context-manager]: https://docs.python.org/3/reference/datamodel.html#context-managers
```python
from unstructured_client import UnstructuredClient
def main():
with UnstructuredClient() as uc_client:
# Rest of application here...
# Or when using async:
async def amain():
async with UnstructuredClient() as uc_client:
# Rest of application here...
```
<!-- End Resource Management [resource-management] -->
<!-- Start Debugging [debug] -->
## Debugging
You can setup your SDK to emit debug logs for SDK requests and responses.
You can pass your own logger class directly into your SDK.
```python
from unstructured_client import UnstructuredClient
import logging
logging.basicConfig(level=logging.DEBUG)
s = UnstructuredClient(debug_logger=logging.getLogger("unstructured_client"))
```
<!-- End Debugging [debug] -->
<!-- No SDK Available Operations -->
<!-- No Pagination -->
<!-- No Server Selection -->
<!-- No Authentication -->
<!-- Placeholder for Future Speakeasy SDK Sections -->
### Maturity
This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage
to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally
looking for the latest version.
### Installation Instructions for Local Development
The following instructions are intended to help you get up and running with `unstructured-python-client` locally if you are planning to contribute to the project.
* Using `pyenv` to manage virtualenv's is recommended but not necessary
* Mac install instructions. See [here](https://github.com/Unstructured-IO/community#mac--homebrew) for more detailed instructions.
* `brew install pyenv-virtualenv`
* `pyenv install 3.10`
* Linux instructions are available [here](https://github.com/Unstructured-IO/community#linux).
* Create a virtualenv to work in and activate it, e.g. for one named `unstructured-python-client`:
`pyenv virtualenv 3.10 unstructured-python-client`
`pyenv activate unstructured-python-client`
* Run `make install` and `make test`
### Contributions
While we value open-source contributions to this SDK, this library is generated programmatically by Speakeasy. In order to start working with this repo, you need to:
1. Install Speakeasy client locally https://github.com/speakeasy-api/speakeasy#installation
2. Run `speakeasy auth login`
3. Run `make client-generate`. This allows to iterate development with python client.
There are two important files used by `make client-generate`:
1. `openapi.json` which is actually not stored here, [but fetched from unstructured-api](https://api.unstructured.io/general/openapi.json), represents the API that is supported on backend.
2. `overlay_client.yaml` is a handcrafted diff that when applied over above, produces `openapi_client.json` which is used to generate SDK.
Once PR with changes is merged, Github CI will autogenerate the Speakeasy client in a new PR, using
the `openapi.json` and `overlay_client.yaml` You will have to manually bring back the human created lines in it.
Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!
### SDK Created by [Speakeasy](https://www.speakeasyapi.dev/docs/sdk-design/python/methodology-python)

View File

@@ -0,0 +1,414 @@
unstructured_client-0.42.8.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
unstructured_client-0.42.8.dist-info/METADATA,sha256=PY64HSKw7ndYok_o3TW7hAjQN4ZxxNUgwdWxmpV9sXs,23351
unstructured_client-0.42.8.dist-info/RECORD,,
unstructured_client-0.42.8.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
unstructured_client-0.42.8.dist-info/licenses/LICENSE.md,sha256=kuYYlpP24KF1W0wo4xX7fJME5sVNkXGJt5ykkJo2Txs,1071
unstructured_client/__init__.py,sha256=w2u919V3Tzv4zEPQ-OYJ79gQ_4_SyW7GOFFoHtqXDFA,401
unstructured_client/__pycache__/__init__.cpython-313.pyc,,
unstructured_client/__pycache__/_version.cpython-313.pyc,,
unstructured_client/__pycache__/basesdk.cpython-313.pyc,,
unstructured_client/__pycache__/destinations.cpython-313.pyc,,
unstructured_client/__pycache__/general.cpython-313.pyc,,
unstructured_client/__pycache__/httpclient.cpython-313.pyc,,
unstructured_client/__pycache__/jobs.cpython-313.pyc,,
unstructured_client/__pycache__/sdk.cpython-313.pyc,,
unstructured_client/__pycache__/sdkconfiguration.cpython-313.pyc,,
unstructured_client/__pycache__/sources.cpython-313.pyc,,
unstructured_client/__pycache__/templates.cpython-313.pyc,,
unstructured_client/__pycache__/users.cpython-313.pyc,,
unstructured_client/__pycache__/workflows.cpython-313.pyc,,
unstructured_client/_hooks/__init__.py,sha256=9_7W5jAYw8rcO8Kfc-Ty-lB82BHfksAJJpVFb_UeU1c,146
unstructured_client/_hooks/__pycache__/__init__.cpython-313.pyc,,
unstructured_client/_hooks/__pycache__/registration.cpython-313.pyc,,
unstructured_client/_hooks/__pycache__/sdkhooks.cpython-313.pyc,,
unstructured_client/_hooks/__pycache__/types.cpython-313.pyc,,
unstructured_client/_hooks/custom/__init__.py,sha256=Qnn-jqRQ2vk8lUdf-TirQGfMVmvYMi2f2b4qepfqLqg,153
unstructured_client/_hooks/custom/__pycache__/__init__.cpython-313.pyc,,
unstructured_client/_hooks/custom/__pycache__/clean_server_url_hook.cpython-313.pyc,,
unstructured_client/_hooks/custom/__pycache__/common.cpython-313.pyc,,
unstructured_client/_hooks/custom/__pycache__/form_utils.cpython-313.pyc,,
unstructured_client/_hooks/custom/__pycache__/logger_hook.cpython-313.pyc,,
unstructured_client/_hooks/custom/__pycache__/pdf_utils.cpython-313.pyc,,
unstructured_client/_hooks/custom/__pycache__/request_utils.cpython-313.pyc,,
unstructured_client/_hooks/custom/__pycache__/split_pdf_hook.cpython-313.pyc,,
unstructured_client/_hooks/custom/__pycache__/validation_errors.cpython-313.pyc,,
unstructured_client/_hooks/custom/clean_server_url_hook.py,sha256=xOkBoYleHOyAu9WfGlo_r5f8EuIoP5jf1WrByVwyZaw,1510
unstructured_client/_hooks/custom/common.py,sha256=1eHL2f6jqLJwvXca6NNkg4_KdKuawKxln-BhNuveKrE,56
unstructured_client/_hooks/custom/form_utils.py,sha256=t5yQHOhWv_FkiCF9e5TGJreLc6qZQmHoEgtLkAi5SfM,9943
unstructured_client/_hooks/custom/logger_hook.py,sha256=0NqSU1THN7MC8_amaSUGQU6Oi042hUHQIGbEjhA40vg,3348
unstructured_client/_hooks/custom/pdf_utils.py,sha256=BnPkSNI9J-BcexTHcPzi7CCCPQvBDWjO1-e3t6Gs5rk,2178
unstructured_client/_hooks/custom/request_utils.py,sha256=PzuIQPX53D-mBpboPooYC0-H2JD26QeDFCZIMRKagwM,7375
unstructured_client/_hooks/custom/split_pdf_hook.py,sha256=8eyD-Gc70c2pNQlEkYKd2mZkTUPUUdMXznc_v-lfo-U,29155
unstructured_client/_hooks/custom/validation_errors.py,sha256=LqEC_jWr6pX7WrEcwxrZk1SbglBzRzBNF8EzheF7z04,505
unstructured_client/_hooks/registration.py,sha256=619k5bnJ7KdJf0k93q7NuvvieMNBEQY2lQRhYHs1qKQ,1556
unstructured_client/_hooks/sdkhooks.py,sha256=Y5ZhFIByWpamA5kOMwykCGHtOnVyCQtYYVN8jKDagL8,2569
unstructured_client/_hooks/types.py,sha256=ECGrw-JSv31fssZd3PwZmF8JQA0KIG61_Mtg2xd8f74,3067
unstructured_client/_version.py,sha256=aQ_2ua9Kwsd8Dnm1fcYbVDZ7WSlYb6g2Ya9kYaSMurc,484
unstructured_client/basesdk.py,sha256=-qBV6WWXCRvhfbtXJX5-Rhptd_wqo0lZFnzojgP__Mo,11911
unstructured_client/destinations.py,sha256=sEqH8J7oez3e0WxZFAprVF1ZSyjVAeAM2JjVH9PmGyQ,60839
unstructured_client/general.py,sha256=Sq4YWnDFcjgzzhYcnKcuh3vc4Wjk5ytKas4hVFnWnPg,11219
unstructured_client/httpclient.py,sha256=Eu73urOAiZQtdUIyOUnPccxCiBbWEKrXG-JrRG3SLM4,3946
unstructured_client/jobs.py,sha256=vDPwPXzf7-_WALSNnh2FeEL_tNHJKEqdFcZISIyi7IA,57871
unstructured_client/models/__init__.py,sha256=wIW9sbvSKlrGyoPY4mXvHqw-_Inpl6zqpN6U6j-w6SU,83
unstructured_client/models/__pycache__/__init__.cpython-313.pyc,,
unstructured_client/models/errors/__init__.py,sha256=Oc5GCGfvRgiFDFX5tH0rM6wvZCbfC7_b317dm3HFXXY,2034
unstructured_client/models/errors/__pycache__/__init__.cpython-313.pyc,,
unstructured_client/models/errors/__pycache__/httpvalidationerror.cpython-313.pyc,,
unstructured_client/models/errors/__pycache__/no_response_error.cpython-313.pyc,,
unstructured_client/models/errors/__pycache__/responsevalidationerror.cpython-313.pyc,,
unstructured_client/models/errors/__pycache__/sdkerror.cpython-313.pyc,,
unstructured_client/models/errors/__pycache__/servererror.cpython-313.pyc,,
unstructured_client/models/errors/__pycache__/unstructuredclienterror.cpython-313.pyc,,
unstructured_client/models/errors/httpvalidationerror.py,sha256=qnDUMG7Cz7hdZGSZMSgn2caFaC0oJ2zWlTg4L1-dYzk,1081
unstructured_client/models/errors/no_response_error.py,sha256=FQG44Lq6uF7uUlzbUYfM3dJon6sbqXzJ0Ri6YrDdsEs,380
unstructured_client/models/errors/responsevalidationerror.py,sha256=LtmB6oGO9FmxT8Xs2gagqtLl7fHAuvaYTebH3ZGCGgw,729
unstructured_client/models/errors/sdkerror.py,sha256=SWUbSK2weWzJIniU9zvyfbUuJNlWLDDsVgG-9vHvc4E,1262
unstructured_client/models/errors/servererror.py,sha256=Wkj1QHfyqAbYXX2Mu6UjwRxZpuk1jYk0POqHFQk7K6k,676
unstructured_client/models/errors/unstructuredclienterror.py,sha256=SQ1IBbmJdkfbPLBmyWtEx6FTsKmoWk_B50bg46r08yM,725
unstructured_client/models/operations/__init__.py,sha256=LcUGqcYIPy16QrjRljyyE9_LcLvSAXXR8VtmltdiA3k,17551
unstructured_client/models/operations/__pycache__/__init__.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/cancel_job.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/create_connection_check_destinations.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/create_connection_check_sources.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/create_destination.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/create_job.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/create_source.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/create_workflow.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/delete_destination.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/delete_source.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/delete_workflow.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/download_job_output.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/get_connection_check_destinations.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/get_connection_check_sources.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/get_destination.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/get_job.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/get_job_details.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/get_job_failed_files.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/get_source.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/get_template.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/get_workflow.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/list_destinations.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/list_jobs.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/list_sources.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/list_templates.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/list_workflows.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/partition.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/run_workflow.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/update_destination.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/update_source.cpython-313.pyc,,
unstructured_client/models/operations/__pycache__/update_workflow.cpython-313.pyc,,
unstructured_client/models/operations/cancel_job.py,sha256=jYlePmtM2UZHyxBdWV6sDysMUbBAsZ4v9bO3tW1Fyss,2614
unstructured_client/models/operations/create_connection_check_destinations.py,sha256=JJsdQGyHNecMmMmKoxL0VnUOCimjpfa902GyCt6_zsU,3011
unstructured_client/models/operations/create_connection_check_sources.py,sha256=2qDkoU1hxFHJHl-9FHUf9VdwTqb9-8OKDKBHjGhyP9U,2981
unstructured_client/models/operations/create_destination.py,sha256=9HOjjbQaXRRLoZL6B1oqmw2PV3mDIH9Z889mS0qfvVI,3261
unstructured_client/models/operations/create_job.py,sha256=_IhH8_eWSm4Au0gaPwh1DJO-oDIeAQrrdJI1hqz6yQo,2954
unstructured_client/models/operations/create_source.py,sha256=2dNP6mF2dLK3L_6hARkuUeYbi3O6Pf_lUE7F8ZyIIt0,3145
unstructured_client/models/operations/create_workflow.py,sha256=CTJjI5FsL5J7kusWuxenD4JbyoecujMD59bORmJkVEE,3039
unstructured_client/models/operations/delete_destination.py,sha256=YHS-ZBRJrBMUvWolnEoNniLn_eRqGKcAUaA7xl5UfH8,2662
unstructured_client/models/operations/delete_source.py,sha256=sLvmsSVaF9ylkFNlm5KSZ9mKF7buSWO3pIxno-e6PbM,2632
unstructured_client/models/operations/delete_workflow.py,sha256=TqiTmvi2pzk1LLvAXKGqBZu_SvbZVZls6A2H7olEhOk,2644
unstructured_client/models/operations/download_job_output.py,sha256=QxmbYLLy3mRU2oSL49rmjJhH3epwkvIzqFAbaPnM5S4,3329
unstructured_client/models/operations/get_connection_check_destinations.py,sha256=BP_pQF8BKmtV49GFdE4WyaudOAhgCcRXq8Ngtq-_cSc,2999
unstructured_client/models/operations/get_connection_check_sources.py,sha256=-fFsArStMnMBWAvcHa8dyIugtYLyWg1a6ZaI3zbP_MI,2969
unstructured_client/models/operations/get_destination.py,sha256=jAC-_wLcau2LrvBGCzLIEoTLmCAkKJMyWkxalF8sg_U,3005
unstructured_client/models/operations/get_job.py,sha256=aMIWA5shRxEgjeHaQVYdpFVkUpTrLW2NQ9XfRV85sdA,2782
unstructured_client/models/operations/get_job_details.py,sha256=TJsNuBOVC_ShoSi71GFdhNx-85xADEtQYtLpMucB7hk,2778
unstructured_client/models/operations/get_job_failed_files.py,sha256=D_f08iiteHSCRHFPsHffAc-LeiEvxLa8uEoQgFin0DA,2828
unstructured_client/models/operations/get_source.py,sha256=pZRdTgg3_KvuuXiV7Ipt6L5HqgctmTmx4377VeRsJ8k,2935
unstructured_client/models/operations/get_template.py,sha256=TpabDvMpBiQKLPifIGhrHWCSmf_yXvXAGZHeHa-zRWE,2812
unstructured_client/models/operations/get_workflow.py,sha256=b7YjZhmJ6UZu23t-MVZfe93aEPniIgQn_p8j8ae9n6Y,2891
unstructured_client/models/operations/list_destinations.py,sha256=j6Ii8nCufp4RtVMg1XeDYET0QREDoi2xXUqkVUbnDGo,3514
unstructured_client/models/operations/list_jobs.py,sha256=UbTcKIPdkRU6wFKdzumOd3unXkPRo_YGZuuAKJsZ3JA,3117
unstructured_client/models/operations/list_sources.py,sha256=WKSd5QWIcwioG34qqLQ4Fn2OLk9OgLF_bKtYEKWEFMI,3368
unstructured_client/models/operations/list_templates.py,sha256=3CNnu-ou226LWj7Pesp9ay0aJYeIBZwcvJmCG24nBtU,2746
unstructured_client/models/operations/list_workflows.py,sha256=dAuoFPo4JDC4GsHQYUZ5kuRbMo8bUNmB3Zvu3vgPYEA,6336
unstructured_client/models/operations/partition.py,sha256=zBSNxjqPQn0Me_ePpVoHW1gpAgVz4ZL_GBRPiBPoUDg,3050
unstructured_client/models/operations/run_workflow.py,sha256=k10cyASPo8JDKBkTgNnZTvS6igvGJSyQg-tIP9I01Ks,3207
unstructured_client/models/operations/update_destination.py,sha256=TIgEAhGBScarEw9uIf-KgLcCFU0gl71U6gcBv_DnBsw,3445
unstructured_client/models/operations/update_source.py,sha256=ByJEe94QFTXvkZdzaMFfrBuQTec2c8Qroscvwvw6oSc,3319
unstructured_client/models/operations/update_workflow.py,sha256=KU5t5wdLgMrhv1fNYlxU4WwWxMIZoVbPjT8_mkw6uRI,3217
unstructured_client/models/shared/__init__.py,sha256=W-M7fyOJpePFb_-sQ2C7K-C7LBf_D3WQHRSnd-o0WCs,45552
unstructured_client/models/shared/__pycache__/__init__.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/astradbconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/astradbconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/azureaisearchconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/azureaisearchconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/azuredestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/azuredestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/azuresourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/azuresourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/body_create_job.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/body_run_workflow.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/boxsourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/boxsourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/confluencesourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/confluencesourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/connectioncheckstatus.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/couchbasedestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/couchbasedestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/couchbasesourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/couchbasesourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/createdestinationconnector.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/createsourceconnector.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/createworkflow.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/crontabentry.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/dagnodeconnectioncheck.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/databricksvdtdestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/databricksvdtdestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/databricksvolumesconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/databricksvolumesconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/deltatableconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/deltatableconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/destinationconnectorinformation.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/destinationconnectortype.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/dropboxsourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/dropboxsourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/elasticsearchconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/elasticsearchconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/encryptiontype.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/failedfile.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/gcsdestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/gcsdestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/gcssourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/gcssourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/googledrivesourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/googledrivesourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/ibmwatsonxs3destinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/ibmwatsonxs3destinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/jirasourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/jirasourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/jobdetails.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/jobfailedfiles.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/jobinformation.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/jobnodedetails.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/jobprocessingstatus.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/jobstatus.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/kafkaclouddestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/kafkaclouddestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/kafkacloudsourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/kafkacloudsourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/milvusdestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/milvusdestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/mongodbconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/mongodbconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/neo4jdestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/neo4jdestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/nodefilemetadata.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/onedrivedestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/onedrivedestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/onedrivesourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/onedrivesourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/opensearchconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/opensearchconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/outlooksourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/outlooksourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/partition_parameters.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/pineconedestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/pineconedestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/postgresdestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/postgresdestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/postgressourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/postgressourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/qdrantclouddestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/qdrantclouddestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/redisdestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/redisdestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/s3destinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/s3destinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/s3sourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/s3sourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/salesforcesourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/salesforcesourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/secretreference.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/security.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/sharepointsourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/sharepointsourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/snowflakedestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/snowflakedestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/snowflakesourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/snowflakesourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/sortdirection.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/sourceconnectorinformation.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/sourceconnectortype.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/templatedetail.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/templatelistitem.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/templatenode.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/updatedestinationconnector.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/updatesourceconnector.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/updateworkflow.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/validationerror.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/weaviatedestinationconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/weaviatedestinationconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/workflowinformation.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/workflowjobtype.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/workflownode.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/workflownodetype.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/workflowschedule.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/workflowstate.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/workflowtype.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/zendesksourceconnectorconfig.cpython-313.pyc,,
unstructured_client/models/shared/__pycache__/zendesksourceconnectorconfiginput.cpython-313.pyc,,
unstructured_client/models/shared/astradbconnectorconfig.py,sha256=G9DwHU_YWicCOfVXR-rohtPm08rxDUGKhK2xoyOJm0o,2278
unstructured_client/models/shared/astradbconnectorconfiginput.py,sha256=d1NmZqUArFuzmJAIA2_CsFfcyXCXOePA6DvBTZ9KRVY,2495
unstructured_client/models/shared/azureaisearchconnectorconfig.py,sha256=z0DxLMPLZYYzWu7zD9G-xtw4UWBjqzkL52LBmVRPgLI,397
unstructured_client/models/shared/azureaisearchconnectorconfiginput.py,sha256=JdBNuBBCc-m9cXALrGYUKDi1ZtdfsUti77Qfe2_cMSE,407
unstructured_client/models/shared/azuredestinationconnectorconfig.py,sha256=DOX5WtJpxAjF77kuyN4DpnnYscytvE6HJWFoBXRajmA,1990
unstructured_client/models/shared/azuredestinationconnectorconfiginput.py,sha256=8-eyOnQxl6H-kXc5VTRNPhqOtjNSix195D_zPp_cpps,2000
unstructured_client/models/shared/azuresourceconnectorconfig.py,sha256=ak5fT568yNeuWvEBIrDKir8Nx8YVeRfitSrjKxodbck,2021
unstructured_client/models/shared/azuresourceconnectorconfiginput.py,sha256=2JsS-4S8P_pQAvBDqau29OziDXXio1PGDOSb0D38anE,2114
unstructured_client/models/shared/body_create_job.py,sha256=gWcwAIQvj0upsGukFkN9DWc3UZ39VOu2jNQ8yyWbIB0,2409
unstructured_client/models/shared/body_run_workflow.py,sha256=nPPRrHJLGfip4jorGKhYLpPHqVc9obdJS384QQ-lH-w,2386
unstructured_client/models/shared/boxsourceconnectorconfig.py,sha256=fbIfXfTFoUi5DmSwuc0ftICp0xzfGN0mKA23CtNeKdU,384
unstructured_client/models/shared/boxsourceconnectorconfiginput.py,sha256=zZ2m8Z7ZOqohGd2H6FpSz43tbxizKB2y-YmaZAonY_Y,506
unstructured_client/models/shared/confluencesourceconnectorconfig.py,sha256=cVMsktutn7zE6-D8Cwkup3xEku3RMTvnqupxLwStBFA,2257
unstructured_client/models/shared/confluencesourceconnectorconfiginput.py,sha256=qfgNUs8JYERWP7MYaj8Y332OTSVbEj9i74OPj7U7d-M,2508
unstructured_client/models/shared/connectioncheckstatus.py,sha256=uNxkUoy2Z4n7VN4G4D2_EnqHPTMy2pQpATdMmX3wmGY,248
unstructured_client/models/shared/couchbasedestinationconnectorconfig.py,sha256=lwEV8EFuQtwKlyeS9r8mB1-TcUMJkPlg78o2sM2Icdo,1750
unstructured_client/models/shared/couchbasedestinationconnectorconfiginput.py,sha256=6HpMTJeGUtKUjM96fv5w3oJw2OuVJw6b1uJ50V-KR-U,1760
unstructured_client/models/shared/couchbasesourceconnectorconfig.py,sha256=AHVFRyaNLXzksrvzHCH63BvDq8bOfotcCjZxo2uzoTo,1787
unstructured_client/models/shared/couchbasesourceconnectorconfiginput.py,sha256=uIvzRUOH5Fnhc551vUdNhAIITyNgF4ej8GFIkVNV-ZU,1797
unstructured_client/models/shared/createdestinationconnector.py,sha256=XwJwnCJDyohwX9sJ9YcD-Ch9cU6sFHWwPpaeU_UL6hs,6665
unstructured_client/models/shared/createsourceconnector.py,sha256=OSW9HsQ3t0SOiagVTKduloRJesEQ6VapBr2_smMeX_w,5910
unstructured_client/models/shared/createworkflow.py,sha256=q3SOukouvKEXpJHZWhOPjISCYDMS6-IvnI99X6mRqc0,2878
unstructured_client/models/shared/crontabentry.py,sha256=vU2SVpXsb1NigsIxWV7mtYn0SX38nqLDLXHNN-3Bf7w,321
unstructured_client/models/shared/dagnodeconnectioncheck.py,sha256=TRdhbmNpELlaf-QrjZYWl3IOrodyQS9DM0PUEZfvtKM,1771
unstructured_client/models/shared/databricksvdtdestinationconnectorconfig.py,sha256=BzLazawxO0Fs3MZQ-jADiHG9PwShs6w40dQE3H77xwM,2507
unstructured_client/models/shared/databricksvdtdestinationconnectorconfiginput.py,sha256=cUbo1TbgZzgGAxTTXbxDXYLlfy5R3gVh_P63RQhyyBQ,2517
unstructured_client/models/shared/databricksvolumesconnectorconfig.py,sha256=f5c7cbY3HC5qHLkadaWEERh-KEFIuBZlNf6dOmjar3k,717
unstructured_client/models/shared/databricksvolumesconnectorconfiginput.py,sha256=3eTzF_UQt8V92sKhX4DyP03TuPMfOQlGn5RmOc4_MtU,727
unstructured_client/models/shared/deltatableconnectorconfig.py,sha256=6TTvob2s-2-WAAiOCxsFqB0aj7TGmctL1XdI1LjnqO0,494
unstructured_client/models/shared/deltatableconnectorconfiginput.py,sha256=m8qFVYXmv4tf-1yF4dQP2i5Q_emNlIb8X_pCSP8PT_s,504
unstructured_client/models/shared/destinationconnectorinformation.py,sha256=htGnvVZRxeNuBmqfm5IRWARtMJYvBPhMjyJAjd8lBo8,7535
unstructured_client/models/shared/destinationconnectortype.py,sha256=bm2w7x861byLpw-MPV-IMRTaQwNrZGWN79jw6J4CFEU,963
unstructured_client/models/shared/dropboxsourceconnectorconfig.py,sha256=bzwDs5yS3pou68CRAnW0ZKs5b5PSfobfWAln7fIpics,415
unstructured_client/models/shared/dropboxsourceconnectorconfiginput.py,sha256=_viK4OU-brJjz9ppVlCuKLGpv1S3cgW6d5A_3otOUEg,496
unstructured_client/models/shared/elasticsearchconnectorconfig.py,sha256=0wmKOu6ld2Fwpig6CyMG5JogJIY1WaXICWfU2zz5vRI,451
unstructured_client/models/shared/elasticsearchconnectorconfiginput.py,sha256=tmPMQdJtOPZNaP_h19datJucTljwe-o24opX4myF3vA,461
unstructured_client/models/shared/encryptiontype.py,sha256=AtA7SUQhg7-gbPKnAYnZlOXyOHE_P04VgPgyW0dM1lw,205
unstructured_client/models/shared/failedfile.py,sha256=skbSORuSCZ5mLb6ix9czz0u0yxiQOJxnvwiJO4wunFM,334
unstructured_client/models/shared/gcsdestinationconnectorconfig.py,sha256=S01QR3H1oq6ym2Ev_VvwBhdMtPVjVvcnLMJ3x5pyuqw,404
unstructured_client/models/shared/gcsdestinationconnectorconfiginput.py,sha256=6aZE_8jAzam_pqGK-OvSn73ETyL-SoCvlchX_dUMlRc,414
unstructured_client/models/shared/gcssourceconnectorconfig.py,sha256=j7sm633N9Ri_hBVlAPGXo-Y3G6fqhVvaeylbTWygk7k,435
unstructured_client/models/shared/gcssourceconnectorconfiginput.py,sha256=b_-eIPHbGctn1kXnxRHiluLvEVmer8X6XNeGvYqcHno,516
unstructured_client/models/shared/googledrivesourceconnectorconfig.py,sha256=pbn1HXI3vyXUF55JH21eTURViKZIaKDKpZXxzyns4Eo,1951
unstructured_client/models/shared/googledrivesourceconnectorconfiginput.py,sha256=VA5EaYJseBcXaUIkJFGNdhTQ7IDtEnSjqJmGV1k4Ho4,2252
unstructured_client/models/shared/ibmwatsonxs3destinationconnectorconfig.py,sha256=YLZAgrltyljmNboTAS0_nss9pl7Qg5HfIdiPVGcKVoU,910
unstructured_client/models/shared/ibmwatsonxs3destinationconnectorconfiginput.py,sha256=bFvTfjJr24W-8RVFCMJabFzuEH76KsL6sWzm809XYlo,1450
unstructured_client/models/shared/jirasourceconnectorconfig.py,sha256=-94w3mwAcCLE2kr_BT80nvVLPOG3n4-Ua0yBekDPvP8,2577
unstructured_client/models/shared/jirasourceconnectorconfiginput.py,sha256=zgpEjZQY9kyr2ftI8sYToosXFG075x8AKKOCLZyq_fw,2587
unstructured_client/models/shared/jobdetails.py,sha256=PjGd-PJAWRC4_I48BHzm7Mb0l9VW_V5hbZtUmbKMeqw,1728
unstructured_client/models/shared/jobfailedfiles.py,sha256=42MKdUZ92sJbOCaP3B53MUYCzX7Znp_LQ29VEG1URJE,434
unstructured_client/models/shared/jobinformation.py,sha256=18IEPxiARCS-S_N8N1W0kr-HIPT7ZuG3zZ3tdZczMFI,2264
unstructured_client/models/shared/jobnodedetails.py,sha256=XdLZShZyZxScvUK9IjepoWCKmbK6P4eWSLbIxjw6Aro,1787
unstructured_client/models/shared/jobprocessingstatus.py,sha256=7RYsgVI654qDQur-o1z77P4TnWiLwiWMh-sf_LFQZ84,352
unstructured_client/models/shared/jobstatus.py,sha256=FpQ2OACyVkO4XsDnVidUzgqlhlR55ccTnYaxoRpEWMY,294
unstructured_client/models/shared/kafkaclouddestinationconnectorconfig.py,sha256=jQLdN-MZ4cuNesRHazYbVrdrREb6JOQ-uvoRQn1OoLA,1679
unstructured_client/models/shared/kafkaclouddestinationconnectorconfiginput.py,sha256=UdLxCY4j5EG9liSXUtHWe4dI2TCTgN2FScNBJ-RCtes,1798
unstructured_client/models/shared/kafkacloudsourceconnectorconfig.py,sha256=p58ty0UJYqdkVwqJO9ntiZZiiVyNuMnMTzy-iJF3h68,1695
unstructured_client/models/shared/kafkacloudsourceconnectorconfiginput.py,sha256=aAOv2GTzIl2i1JJVbqh980dgGhHJ-6PreVp2gcmdJVI,1827
unstructured_client/models/shared/milvusdestinationconnectorconfig.py,sha256=BQj1UWfor2oKdvpCylsaDn_G5QPJmx6PnRyGBrdyIl8,1858
unstructured_client/models/shared/milvusdestinationconnectorconfiginput.py,sha256=oWY6vEZiw-QScRCSLD6h2xhDQK0dAyERxp_N2lM4b6M,1868
unstructured_client/models/shared/mongodbconnectorconfig.py,sha256=44mrYQkd10YMHMyiW-eVtpo7HEAT_kE7ax3DM6K2F_c,395
unstructured_client/models/shared/mongodbconnectorconfiginput.py,sha256=-Nm0PFbkZIv-ogTXKZ_OUahF4G1NXu9M9OKzMH6u0mE,405
unstructured_client/models/shared/neo4jdestinationconnectorconfig.py,sha256=AfSZEaaOb7LgIC2_qx-a7aPBhIdCuZXBIBAFvuj7P0A,487
unstructured_client/models/shared/neo4jdestinationconnectorconfiginput.py,sha256=ibl2Ak6YK8e_jeBEd1MaOkDmPtvjfeOszVh3VJlZMPc,567
unstructured_client/models/shared/nodefilemetadata.py,sha256=OfsV70c7qYOSq4Ak8Q4ZuPM53jXhuPsCI-Kid82Zu-g,432
unstructured_client/models/shared/onedrivedestinationconnectorconfig.py,sha256=t43jcwuqmVpSYpE1IWbLN_Y2G5vu0tTOepbZEeQjmP4,558
unstructured_client/models/shared/onedrivedestinationconnectorconfiginput.py,sha256=LiXXf0pUwzXbjdgfV8bgf8SVpAJ3aPRWPdYP4mxIIPI,568
unstructured_client/models/shared/onedrivesourceconnectorconfig.py,sha256=uZyYQHgijFaP7We0ixlwQOT61KB6ForXVzLQ0N22F48,577
unstructured_client/models/shared/onedrivesourceconnectorconfiginput.py,sha256=L9wlUptSEUKdnO1n5S_CqA29D53xUjn_Kv1Nx7TNeSA,659
unstructured_client/models/shared/opensearchconnectorconfig.py,sha256=cyfoUBkOK1UTEfGOzki534WVhMEx6LKneb99XS8zCPw,4613
unstructured_client/models/shared/opensearchconnectorconfiginput.py,sha256=6lZXttaXA21ac8bS5kfsCM46QJqRwu4h3zY5wygnslU,3935
unstructured_client/models/shared/outlooksourceconnectorconfig.py,sha256=tpbfa1tJ2q8guonUgJslIcOMkxHDxuznLtgBnD1LPAA,1887
unstructured_client/models/shared/outlooksourceconnectorconfiginput.py,sha256=3GNU-F6pGWVscSU5tlGmqSQL0WyvBkjo4FznL_pUm44,1951
unstructured_client/models/shared/partition_parameters.py,sha256=L76zewtFq6vMC1EnQn-B9GwzIFlPj5bGLqB8oNB3aSQ,25748
unstructured_client/models/shared/pineconedestinationconnectorconfig.py,sha256=T1kx3FhsiuPl1uKjbv_RAjQPUgXlRIMiMuYIQEEvwnk,470
unstructured_client/models/shared/pineconedestinationconnectorconfiginput.py,sha256=WkbnIf6Xi91L0twrWcrWkZmymzvoVhVZoFmYSspXHwA,549
unstructured_client/models/shared/postgresdestinationconnectorconfig.py,sha256=jPbF9ILNwmaiRyzNg-SEv0H6Ds-kZycu4ZYW4E7R_rc,565
unstructured_client/models/shared/postgresdestinationconnectorconfiginput.py,sha256=Tv89j2pI2QFCXxWXVfLwtntSCu2jI8eAC5SKgZShA7w,575
unstructured_client/models/shared/postgressourceconnectorconfig.py,sha256=qMf0ApQywGqRVR0QIVDy_DN6-MCHfIcqriUpofBFEI8,1747
unstructured_client/models/shared/postgressourceconnectorconfiginput.py,sha256=Xb1Dd2bxHNoNsXQ2vkrFXKBs0VSnpkxu-D0MShzA-T0,1810
unstructured_client/models/shared/qdrantclouddestinationconnectorconfig.py,sha256=IqVNBGosk703M7P2ZpC_BJH3jO1P3n5LjXtcnCXh4OA,474
unstructured_client/models/shared/qdrantclouddestinationconnectorconfiginput.py,sha256=fW_1NlJclLQrVlduA4ROhgv_TnwoXLSiiiijAUREDmc,553
unstructured_client/models/shared/redisdestinationconnectorconfig.py,sha256=Q-Pev0QcfL-Wkmt9gmRcFWKCE3o8UhL8VlASHqiJli0,1798
unstructured_client/models/shared/redisdestinationconnectorconfiginput.py,sha256=iaP2ri21AuRfba7AAmkS0tJpwif8RbaAL3RZPCPDTU0,2088
unstructured_client/models/shared/s3destinationconnectorconfig.py,sha256=YNraqk6nFHg6_iIUbhgkQG5JGXWd1YYg0JNnjrHRZLQ,1815
unstructured_client/models/shared/s3destinationconnectorconfiginput.py,sha256=jvefMQdM6xRBonQWj1IlcoAsRRXHDyMa0DPHjsRcCeI,1897
unstructured_client/models/shared/s3sourceconnectorconfig.py,sha256=D7dRQpb1szLeKAvS6SLd9Gp0odODqtbV7PCyXVLyVKI,1846
unstructured_client/models/shared/s3sourceconnectorconfiginput.py,sha256=_iy1bAiifCKnYW3ImANAp12OvnQqBiYlXkvhYH-jO0U,2054
unstructured_client/models/shared/salesforcesourceconnectorconfig.py,sha256=5ofXWApDk-vsEQ7bC8kJtVXN987Q1J8XXh7rB_Te-Jw,510
unstructured_client/models/shared/salesforcesourceconnectorconfiginput.py,sha256=8yFQrvc4PSReXMGPAaeY0JfswpgJeMUfvahWmavkwXQ,520
unstructured_client/models/shared/secretreference.py,sha256=gXp8Gg7M3A0JwwzY9i_gFHaFhmATs_UcyA4B42S_zZk,466
unstructured_client/models/shared/security.py,sha256=cAhOd-qGVANQpfTljlfHO-hqVVV3jzS9BhG9FPPXLZ0,725
unstructured_client/models/shared/sharepointsourceconnectorconfig.py,sha256=ob0vP9qkyEF1cqUQO5-On-8PvoNX5q2eS4rXLzjSvdI,1796
unstructured_client/models/shared/sharepointsourceconnectorconfiginput.py,sha256=5jM8sLaZU7hnP6NDWdaTurnDWSvEBedR0BgUJORoQ-k,1850
unstructured_client/models/shared/snowflakedestinationconnectorconfig.py,sha256=YIdFg79usnFLOmcIoHmcIWByQ7ih-WQ99TitBTzV4fo,2030
unstructured_client/models/shared/snowflakedestinationconnectorconfiginput.py,sha256=EJAWoGpx78dHPjV01Jdh7-xztg7qW44mvOo5-XnKq2c,2040
unstructured_client/models/shared/snowflakesourceconnectorconfig.py,sha256=S5s8ZZAsacietvhww7ca5Z7j5Kv86UnA47ICP6Lu554,2000
unstructured_client/models/shared/snowflakesourceconnectorconfiginput.py,sha256=ovVVR6baKexBGczO7LnVqPbfYDcJby8SZxa_nxMZlDQ,2010
unstructured_client/models/shared/sortdirection.py,sha256=FTBKLYwMTdguUVyJlbnUn1MWplwrOLpjWXA8PXOJxC0,198
unstructured_client/models/shared/sourceconnectorinformation.py,sha256=6QSlyjb-P7_AnoPuUg5uidh3H7PxkYg3q5gSD_uApwo,6674
unstructured_client/models/shared/sourceconnectortype.py,sha256=yu4sP2rfFDKKiHRRhYRKu6qBL5LfsAndiKL0p0-A37Y,814
unstructured_client/models/shared/templatedetail.py,sha256=thfZRwJdI7ZKwWWF4Tm0q1dxU5FV9zF5t2onp3iCoMQ,709
unstructured_client/models/shared/templatelistitem.py,sha256=tBA-YiDIe1XTOvctZY0DAwgWc67uu8ZO83TCfVv7XuI,555
unstructured_client/models/shared/templatenode.py,sha256=BwdkQayVl-I7eypWJs9hfUN4KVl6FLMncUOS-kLdmzM,1640
unstructured_client/models/shared/updatedestinationconnector.py,sha256=87x_BfcSjRuk0RJ07sABqqEXh9BoBGiyVGX5XrHESxs,6478
unstructured_client/models/shared/updatesourceconnector.py,sha256=D090I3rBd8qAx3o9v5eyGRCUWiOrSiOv4vp9ZnJTPJw,5587
unstructured_client/models/shared/updateworkflow.py,sha256=WaRWH4IJpI7AiH1i4hG1NgXGZ9xqozGlPhieUqoQhyw,3116
unstructured_client/models/shared/validationerror.py,sha256=e7jEIrJegMmtCZy0eW9hlDCNtfemA9PcIB9tFMseaiA,536
unstructured_client/models/shared/weaviatedestinationconnectorconfig.py,sha256=OUX15QF79MjGlzq1NRXrybZoicckwVcanPYPgi8HKOs,1525
unstructured_client/models/shared/weaviatedestinationconnectorconfiginput.py,sha256=SEGCLszZ-5ilOh6Y7RNyOFnSdy6iM5GpzhXcALtrQLE,1535
unstructured_client/models/shared/workflowinformation.py,sha256=a5AfERNoov4RMtDQ9SsKZFlECTe3jkdkdIi6G1GfBig,2447
unstructured_client/models/shared/workflowjobtype.py,sha256=i558OBGSNou3fDwBmmkxwaW-ETWmfSpgXupxXyxDtHw,278
unstructured_client/models/shared/workflownode.py,sha256=BnCBR_kTtDmxO77YEGgnel3TBEYbZvuSzSB0tIQT_AA,1625
unstructured_client/models/shared/workflownodetype.py,sha256=HZ4INZ7_qW7gPru9VVoMMAuB5vU1DDyFbuMAhbZ_-wM,261
unstructured_client/models/shared/workflowschedule.py,sha256=Jw9CBxmxTgPg5hFnC6Oexwb9j4X8tEMnwhTuHbykLno,454
unstructured_client/models/shared/workflowstate.py,sha256=tJe2odxTMhjU6Ezu0I31kMwSNBiASehUlplOvSHBGe0,212
unstructured_client/models/shared/workflowtype.py,sha256=1lVo4fjML3bbNVC4YyWrx-9gY8hGYmGEF_urzTfSARM,257
unstructured_client/models/shared/zendesksourceconnectorconfig.py,sha256=5XC8WXt7Pj-e21y_v0eTbFvH6gYrrIyHHgEqdG2CjV0,1658
unstructured_client/models/shared/zendesksourceconnectorconfiginput.py,sha256=cYmZdAI07U_c4VidaqBfHp5YlEJUA-f1rSQEYUclRoo,1668
unstructured_client/py.typed,sha256=zrp19r0G21lr2yRiMC0f8MFkQFGj9wMpSbboePMg8KM,59
unstructured_client/sdk.py,sha256=w1LlrlqTh1dfr2PdvXDdflf91usECbgRJu_tdy8_rDU,7036
unstructured_client/sdkconfiguration.py,sha256=-fCR69AKfxRfXfoJzHh7Qpc6hQj3FmAEKL8OJwi1mtQ,1802
unstructured_client/sources.py,sha256=uPOKUEsSNrZ2mqmxA7sZe7p-zTrHqmG6EWw_vh44c2w,59856
unstructured_client/templates.py,sha256=hTeXrUqRMRa5lcqXK9twi8VCOC1MHXBZeQVrWgsUAKk,16910
unstructured_client/types/__init__.py,sha256=RArOwSgeeTIva6h-4ttjXwMUeCkz10nAFBL9D-QljI4,377
unstructured_client/types/__pycache__/__init__.cpython-313.pyc,,
unstructured_client/types/__pycache__/basemodel.cpython-313.pyc,,
unstructured_client/types/basemodel.py,sha256=L79WXvTECbSqaJzs8D3ud_KdIWkU7Cx2wbohDAktE9E,1127
unstructured_client/users.py,sha256=64HhdIOZlXeXRUkJgTifZ9l4NAtS8pg4dj1DLS9p64s,24349
unstructured_client/utils/__init__.py,sha256=P-h5S4lIx8Z9m_o-bZ1fiMWW7N7RuU0KI1WSWimXqQk,5375
unstructured_client/utils/__pycache__/__init__.cpython-313.pyc,,
unstructured_client/utils/__pycache__/annotations.cpython-313.pyc,,
unstructured_client/utils/__pycache__/datetimes.cpython-313.pyc,,
unstructured_client/utils/__pycache__/enums.cpython-313.pyc,,
unstructured_client/utils/__pycache__/eventstreaming.cpython-313.pyc,,
unstructured_client/utils/__pycache__/forms.cpython-313.pyc,,
unstructured_client/utils/__pycache__/headers.cpython-313.pyc,,
unstructured_client/utils/__pycache__/logger.cpython-313.pyc,,
unstructured_client/utils/__pycache__/metadata.cpython-313.pyc,,
unstructured_client/utils/__pycache__/queryparams.cpython-313.pyc,,
unstructured_client/utils/__pycache__/requestbodies.cpython-313.pyc,,
unstructured_client/utils/__pycache__/retries.cpython-313.pyc,,
unstructured_client/utils/__pycache__/security.cpython-313.pyc,,
unstructured_client/utils/__pycache__/serializers.cpython-313.pyc,,
unstructured_client/utils/__pycache__/unmarshal_json_response.cpython-313.pyc,,
unstructured_client/utils/__pycache__/url.cpython-313.pyc,,
unstructured_client/utils/__pycache__/values.cpython-313.pyc,,
unstructured_client/utils/annotations.py,sha256=aR7mZG34FzgRdew7WZPYEu9QGBerpuKxCF4sek5Z_5Y,1699
unstructured_client/utils/datetimes.py,sha256=oppAA5e3V35pQov1-FNLKxAaNF1_XWi-bQtyjjql3H8,855
unstructured_client/utils/enums.py,sha256=REU6ydF8gsVL3xaeGX4sMNyiL3q5P9h29-f6Sa6luAE,2633
unstructured_client/utils/eventstreaming.py,sha256=LtcrfJYw4nP2Oe4Wl0-cEURLzRGYReRGWNFY5wYECIE,6186
unstructured_client/utils/forms.py,sha256=EJdnrfIkuwpDtekyHutla0HjI_FypTYcmYNyPKEu_W0,6874
unstructured_client/utils/headers.py,sha256=cPxWSmUILrefTGDzTH1Hdj7_Hlsj-EY6K5Tyc4iH4dk,3663
unstructured_client/utils/logger.py,sha256=9nUtlKHo3RFsIVyMw5jq3wEKZMVwHnZMSc6xLp-otC0,520
unstructured_client/utils/metadata.py,sha256=Per2KFXXOqOtoUWXrlIfjrSrBg199KrRW0nKQDgHIBU,3136
unstructured_client/utils/queryparams.py,sha256=MTK6inMS1_WwjmMJEJmAn67tSHHJyarpdGRlorRHEtI,5899
unstructured_client/utils/requestbodies.py,sha256=ySjEyjcLi731LNUahWvLOrES2HihuA8VrOJx4eQ7Qzg,2101
unstructured_client/utils/retries.py,sha256=6yhfZifqIat9i76xF0lTR2jLj1IN9BNGyqqxATlEFPU,6348
unstructured_client/utils/security.py,sha256=ktep3HKwbFs-MLxUYTM8Jd4v-ZBum5_Z0u1PFIdYBX0,5516
unstructured_client/utils/serializers.py,sha256=Hndks5M_rJXVub_N5lu0gKZQUoEmWrn6PN7R-0HwvOE,5999
unstructured_client/utils/unmarshal_json_response.py,sha256=46B0KAZWb1qcZwXNiFvY68YleaquqtYfMb-b1aNv-fk,602
unstructured_client/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
unstructured_client/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
unstructured_client/workflows.py,sha256=h_KY6XRVN4xz3voNLcJUdOeftOwTtK1lr65PgP9i9Ks,51058

View File

@@ -0,0 +1,4 @@
Wheel-Version: 1.0
Generator: poetry-core 2.2.1
Root-Is-Purelib: true
Tag: py3-none-any

View File

@@ -0,0 +1,21 @@
MIT License
Copyright (c) 2023 Unstructured-IO
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.