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

File tree

24 files changed

+46
-40
lines changed

24 files changed

+46
-40
lines changed

README.md

Lines changed: 3 additions & 7 deletions
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 -->

RELEASES.md

Lines changed: 11 additions & 1 deletion
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 - .

USAGE.md

Lines changed: 3 additions & 3 deletions
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
),

docs/sdks/general/README.md

Lines changed: 3 additions & 3 deletions
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
),

files.gen

Lines changed: 17 additions & 17 deletions
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

gen.yaml

Lines changed: 1 addition & 1 deletion
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

setup.py

Lines changed: 1 addition & 1 deletion
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.

src/unstructuredclient/general.py renamed to src/unstructured_client/general.py

Lines changed: 2 additions & 2 deletions
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

0 commit comments

Comments
 (0)