sub2api 0.1.0__tar.gz → 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sub2api-0.1.0 → sub2api-0.1.1}/PKG-INFO +2 -34
- {sub2api-0.1.0 → sub2api-0.1.1}/README.md +0 -12
- {sub2api-0.1.0 → sub2api-0.1.1}/pyproject.toml +3 -2
- {sub2api-0.1.0 → sub2api-0.1.1}/src/sub2api/__init__.py +1 -1
- {sub2api-0.1.0 → sub2api-0.1.1}/.gitignore +0 -0
- {sub2api-0.1.0 → sub2api-0.1.1}/LICENSE +0 -0
- {sub2api-0.1.0 → sub2api-0.1.1}/src/sub2api/_client.py +0 -0
- {sub2api-0.1.0 → sub2api-0.1.1}/src/sub2api/_exceptions.py +0 -0
- {sub2api-0.1.0 → sub2api-0.1.1}/src/sub2api/_models.py +0 -0
- {sub2api-0.1.0 → sub2api-0.1.1}/src/sub2api/_resources.py +0 -0
- {sub2api-0.1.0 → sub2api-0.1.1}/src/sub2api/py.typed +0 -0
- {sub2api-0.1.0 → sub2api-0.1.1}/tests/test_client.py +0 -0
- {sub2api-0.1.0 → sub2api-0.1.1}/tests/test_resources.py +0 -0
|
@@ -1,29 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: sub2api
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Python client for the user-facing API of Sub2API instances
|
|
5
5
|
Author: Eight Labs
|
|
6
|
-
License: MIT
|
|
7
|
-
|
|
8
|
-
Copyright (c) 2026 Eight Labs
|
|
9
|
-
|
|
10
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
12
|
-
in the Software without restriction, including without limitation the rights
|
|
13
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
14
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
15
|
-
furnished to do so, subject to the following conditions:
|
|
16
|
-
|
|
17
|
-
The above copyright notice and this permission notice shall be included in all
|
|
18
|
-
copies or substantial portions of the Software.
|
|
19
|
-
|
|
20
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
-
SOFTWARE.
|
|
6
|
+
License-Expression: MIT
|
|
27
7
|
License-File: LICENSE
|
|
28
8
|
Keywords: ai-gateway,api,sdk,sub2api
|
|
29
9
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -235,15 +215,3 @@ except Sub2APIError as error:
|
|
|
235
215
|
|
|
236
216
|
Remote plaintext HTTP is rejected by default because it exposes login credentials and tokens. Localhost HTTP is allowed for development; other HTTP instances require `allow_insecure=True`.
|
|
237
217
|
|
|
238
|
-
## Development
|
|
239
|
-
|
|
240
|
-
```bash
|
|
241
|
-
python -m pip install -e '.[dev]'
|
|
242
|
-
pytest
|
|
243
|
-
ruff check .
|
|
244
|
-
mypy
|
|
245
|
-
python -m build
|
|
246
|
-
twine check dist/*
|
|
247
|
-
```
|
|
248
|
-
|
|
249
|
-
HAR captures are ignored by Git because they can contain live session credentials.
|
|
@@ -186,15 +186,3 @@ except Sub2APIError as error:
|
|
|
186
186
|
|
|
187
187
|
Remote plaintext HTTP is rejected by default because it exposes login credentials and tokens. Localhost HTTP is allowed for development; other HTTP instances require `allow_insecure=True`.
|
|
188
188
|
|
|
189
|
-
## Development
|
|
190
|
-
|
|
191
|
-
```bash
|
|
192
|
-
python -m pip install -e '.[dev]'
|
|
193
|
-
pytest
|
|
194
|
-
ruff check .
|
|
195
|
-
mypy
|
|
196
|
-
python -m build
|
|
197
|
-
twine check dist/*
|
|
198
|
-
```
|
|
199
|
-
|
|
200
|
-
HAR captures are ignored by Git because they can contain live session credentials.
|
|
@@ -4,11 +4,12 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "sub2api"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.1"
|
|
8
8
|
description = "Python client for the user-facing API of Sub2API instances"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
11
|
-
license =
|
|
11
|
+
license = "MIT"
|
|
12
|
+
license-files = ["LICENSE"]
|
|
12
13
|
authors = [
|
|
13
14
|
{ name = "Eight Labs" }
|
|
14
15
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|