Skip to content

Commit 1f2308c

Browse files
committed
ci: regenerated with OpenAPI Doc 0.0.1, Speakeay CLI 1.89.0
1 parent 7495556 commit 1f2308c

24 files changed

+46
-40
lines changed

Diff for: README.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ pip install unstructured-client
1818
## SDK Example Usage
1919
<!-- Start SDK Example Usage -->
2020
```python
21-
import unstructuredclient
22-
from unstructuredclient.models import shared
21+
import unstructured_client
22+
from unstructured_client.models import shared
2323

24-
s = unstructuredclient.UnstructuredClient(
24+
s = unstructured_client.UnstructuredClient(
2525
security=shared.Security(
2626
api_key_auth="YOUR_API_KEY",
2727
),
@@ -69,8 +69,6 @@ if res.partition_200_application_json_any is not None:
6969

7070
<!-- Start Dev Containers -->
7171

72-
73-
7472
<!-- End Dev Containers -->
7573

7674

@@ -83,8 +81,6 @@ returned response object will have a `Next` method that can be called to pull do
8381
return value of `Next` is `None`, then there are no more pages to be fetched.
8482

8583
Here's an example of one such pagination call:
86-
87-
8884
<!-- End Pagination -->
8985

9086
<!-- Placeholder for Future Speakeasy SDK Sections -->

Diff for: RELEASES.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,14 @@ Based on:
5454
### Generated
5555
- [python v0.2.0] .
5656
### Releases
57-
- [PyPI v0.2.0] https://pypi.org/project/unstructured-client/0.2.0 - .
57+
- [PyPI v0.2.0] https://pypi.org/project/unstructured-client/0.2.0 - .
58+
59+
## 2023-09-21 21:52:29
60+
### Changes
61+
Based on:
62+
- OpenAPI Doc 0.0.1
63+
- Speakeasy CLI 1.89.0 (2.125.1) https://github.com/speakeasy-api/speakeasy
64+
### Generated
65+
- [python v0.3.0] .
66+
### Releases
67+
- [PyPI v0.3.0] https://pypi.org/project/unstructured-client/0.3.0 - .

Diff for: USAGE.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33

44
```python
5-
import unstructuredclient
6-
from unstructuredclient.models import shared
5+
import unstructured_client
6+
from unstructured_client.models import shared
77

8-
s = unstructuredclient.UnstructuredClient(
8+
s = unstructured_client.UnstructuredClient(
99
security=shared.Security(
1010
api_key_auth="YOUR_API_KEY",
1111
),

Diff for: docs/sdks/general/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ Pipeline 1
1111
### Example Usage
1212

1313
```python
14-
import unstructuredclient
15-
from unstructuredclient.models import shared
14+
import unstructured_client
15+
from unstructured_client.models import shared
1616

17-
s = unstructuredclient.UnstructuredClient(
17+
s = unstructured_client.UnstructuredClient(
1818
security=shared.Security(
1919
api_key_auth="YOUR_API_KEY",
2020
),

Diff for: files.gen

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
src/unstructuredclient/sdkconfiguration.py
2-
src/unstructuredclient/general.py
3-
src/unstructuredclient/sdk.py
1+
src/unstructured_client/sdkconfiguration.py
2+
src/unstructured_client/general.py
3+
src/unstructured_client/sdk.py
44
pylintrc
55
setup.py
6-
src/unstructuredclient/__init__.py
7-
src/unstructuredclient/models/__init__.py
8-
src/unstructuredclient/models/errors/sdkerror.py
9-
src/unstructuredclient/utils/__init__.py
10-
src/unstructuredclient/utils/retries.py
11-
src/unstructuredclient/utils/utils.py
12-
src/unstructuredclient/models/operations/partition.py
13-
src/unstructuredclient/models/operations/__init__.py
14-
src/unstructuredclient/models/errors/httpvalidationerror.py
15-
src/unstructuredclient/models/errors/validationerror.py
16-
src/unstructuredclient/models/errors/__init__.py
17-
src/unstructuredclient/models/shared/partition_parameters.py
18-
src/unstructuredclient/models/shared/security.py
19-
src/unstructuredclient/models/shared/__init__.py
6+
src/unstructured_client/__init__.py
7+
src/unstructured_client/models/__init__.py
8+
src/unstructured_client/models/errors/sdkerror.py
9+
src/unstructured_client/utils/__init__.py
10+
src/unstructured_client/utils/retries.py
11+
src/unstructured_client/utils/utils.py
12+
src/unstructured_client/models/operations/partition.py
13+
src/unstructured_client/models/operations/__init__.py
14+
src/unstructured_client/models/errors/httpvalidationerror.py
15+
src/unstructured_client/models/errors/validationerror.py
16+
src/unstructured_client/models/errors/__init__.py
17+
src/unstructured_client/models/shared/partition_parameters.py
18+
src/unstructured_client/models/shared/security.py
19+
src/unstructured_client/models/shared/__init__.py
2020
USAGE.md
2121
docs/models/operations/partitionresponse.md
2222
docs/models/errors/httpvalidationerror.md

Diff for: gen.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ features:
2323
retries: 2.82.0
2424
serverIDs: 2.81.1
2525
python:
26-
version: 0.2.0
26+
version: 0.3.0
2727
author: Unstructured
2828
clientServerStatusCodesAsErrors: true
2929
description: Python Client SDK Generated by Speakeasy

Diff for: setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setuptools.setup(
1212
name="unstructured-client",
13-
version="0.2.0",
13+
version="0.3.0",
1414
author="Unstructured",
1515
description="Python Client SDK Generated by Speakeasy",
1616
long_description=long_description,
File renamed without changes.

Diff for: src/unstructuredclient/general.py renamed to src/unstructured_client/general.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
from .sdkconfiguration import SDKConfiguration
44
from typing import Any, Optional
5-
from unstructuredclient import utils
6-
from unstructuredclient.models import errors, operations, shared
5+
from unstructured_client import utils
6+
from unstructured_client.models import errors, operations, shared
77

88
class General:
99
sdk_configuration: SDKConfiguration

Diff for: src/unstructuredclient/models/errors/httpvalidationerror.py renamed to src/unstructured_client/models/errors/httpvalidationerror.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from ..errors import validationerror as errors_validationerror
66
from dataclasses_json import Undefined, dataclass_json
77
from typing import Optional
8-
from unstructuredclient import utils
8+
from unstructured_client import utils
99

1010

1111
@dataclass_json(undefined=Undefined.EXCLUDE)

Diff for: src/unstructuredclient/models/errors/validationerror.py renamed to src/unstructured_client/models/errors/validationerror.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import dataclasses
55
from dataclasses_json import Undefined, dataclass_json
66
from typing import Any
7-
from unstructuredclient import utils
7+
from unstructured_client import utils
88

99

1010
@dataclass_json(undefined=Undefined.EXCLUDE)

Diff for: src/unstructuredclient/sdk.py renamed to src/unstructured_client/sdk.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import requests as requests_http
44
from .general import General
55
from .sdkconfiguration import SDKConfiguration
6-
from unstructuredclient import utils
7-
from unstructuredclient.models import shared
6+
from unstructured_client import utils
7+
from unstructured_client.models import shared
88

99
class UnstructuredClient:
1010
r"""Unstructured Pipeline API: Partition documents with the Unstructured library"""

Diff for: src/unstructuredclient/sdkconfiguration.py renamed to src/unstructured_client/sdkconfiguration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class SDKConfiguration:
2525
server: str = ''
2626
language: str = 'python'
2727
openapi_doc_version: str = '0.0.1'
28-
sdk_version: str = '0.2.0'
28+
sdk_version: str = '0.3.0'
2929
gen_version: str = '2.125.1'
3030
retry_config: RetryConfig = None
3131

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)