codeset 0.1.0a7__tar.gz → 0.1.0a9__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.
Potentially problematic release.
This version of codeset might be problematic. Click here for more details.
- codeset-0.1.0a9/.release-please-manifest.json +3 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/CHANGELOG.md +24 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/PKG-INFO +3 -2
- {codeset-0.1.0a7 → codeset-0.1.0a9}/README.md +1 -1
- {codeset-0.1.0a7 → codeset-0.1.0a9}/pyproject.toml +2 -1
- {codeset-0.1.0a7 → codeset-0.1.0a9}/requirements-dev.lock +3 -3
- {codeset-0.1.0a7 → codeset-0.1.0a9}/requirements.lock +3 -3
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_version.py +1 -1
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/container_info.py +4 -7
- codeset-0.1.0a7/.release-please-manifest.json +0 -3
- {codeset-0.1.0a7 → codeset-0.1.0a9}/.gitignore +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/CONTRIBUTING.md +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/LICENSE +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/SECURITY.md +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/api.md +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/bin/check-release-environment +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/bin/publish-pypi +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/examples/.keep +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/mypy.ini +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/noxfile.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/release-please-config.json +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/__init__.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_base_client.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_client.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_compat.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_constants.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_exceptions.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_files.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_models.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_qs.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_resource.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_response.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_streaming.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_types.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_utils/__init__.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_utils/_logs.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_utils/_proxy.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_utils/_reflection.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_utils/_resources_proxy.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_utils/_streams.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_utils/_sync.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_utils/_transform.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_utils/_typing.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/_utils/_utils.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/lib/.keep +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/py.typed +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/resources/__init__.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/resources/health.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/resources/samples.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/resources/sessions/__init__.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/resources/sessions/sessions.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/resources/sessions/verify.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/__init__.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/error_info.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/health_check_response.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/sample_download_params.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/sample_list_response.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/session.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/session_apply_diff_params.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/session_apply_diff_response.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/session_close_response.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/session_create_params.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/session_create_response.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/session_execute_command_params.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/session_execute_command_response.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/session_list_response.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/session_status.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/sessions/__init__.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/sessions/job_status.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/sessions/verify_start_response.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/src/codeset/types/sessions/verify_status_response.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/__init__.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/api_resources/__init__.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/api_resources/sessions/__init__.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/api_resources/sessions/test_verify.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/api_resources/test_health.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/api_resources/test_samples.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/api_resources/test_sessions.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/conftest.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/sample_file.txt +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_client.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_deepcopy.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_extract_files.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_files.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_models.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_qs.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_required_args.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_response.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_streaming.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_transform.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_utils/test_proxy.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/test_utils/test_typing.py +0 -0
- {codeset-0.1.0a7 → codeset-0.1.0a9}/tests/utils.py +0 -0
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.0-alpha.9 (2025-07-09)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.1.0-alpha.8...v0.1.0-alpha.9](https://github.com/codeset-ai/codeset-sdk/compare/v0.1.0-alpha.8...v0.1.0-alpha.9)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* **api:** api update ([bd824f7](https://github.com/codeset-ai/codeset-sdk/commit/bd824f79f5654ebb1b04769d6db6f60d3fbfe31b))
|
|
10
|
+
* **api:** manual updates ([763b2eb](https://github.com/codeset-ai/codeset-sdk/commit/763b2eb07889706877b38f0b2f8b4e906215072e))
|
|
11
|
+
|
|
12
|
+
## 0.1.0-alpha.8 (2025-07-09)
|
|
13
|
+
|
|
14
|
+
Full Changelog: [v0.1.0-alpha.7...v0.1.0-alpha.8](https://github.com/codeset-ai/codeset-sdk/compare/v0.1.0-alpha.7...v0.1.0-alpha.8)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
* **api:** api update ([04610b6](https://github.com/codeset-ai/codeset-sdk/commit/04610b66b39f7c398cff96e3163ad47bb36cf735))
|
|
19
|
+
* **api:** manual updates ([e185d63](https://github.com/codeset-ai/codeset-sdk/commit/e185d63f1df964dd9c26618fd9e23deebd5465e6))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Chores
|
|
23
|
+
|
|
24
|
+
* **internal:** bump pinned h11 dep ([1ab8e71](https://github.com/codeset-ai/codeset-sdk/commit/1ab8e714da29dd57961a803f49dc29be1f006417))
|
|
25
|
+
* **package:** mark python 3.13 as supported ([66e8118](https://github.com/codeset-ai/codeset-sdk/commit/66e811829d827dfa63a3c343738bc6268a5b4953))
|
|
26
|
+
|
|
3
27
|
## 0.1.0-alpha.7 (2025-07-02)
|
|
4
28
|
|
|
5
29
|
Full Changelog: [v0.1.0-alpha.6...v0.1.0-alpha.7](https://github.com/codeset-ai/codeset-sdk/compare/v0.1.0-alpha.6...v0.1.0-alpha.7)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: codeset
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.0a9
|
|
4
4
|
Summary: The official Python library for the codeset API
|
|
5
5
|
Project-URL: Homepage, https://github.com/codeset-ai/codeset-sdk
|
|
6
6
|
Project-URL: Repository, https://github.com/codeset-ai/codeset-sdk
|
|
@@ -18,6 +18,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
20
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
21
22
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
22
23
|
Classifier: Typing :: Typed
|
|
23
24
|
Requires-Python: >=3.8
|
|
@@ -44,7 +45,7 @@ It is generated with [Stainless](https://www.stainless.com/).
|
|
|
44
45
|
|
|
45
46
|
## Documentation
|
|
46
47
|
|
|
47
|
-
The full API of this library can be found in [api.md](https://github.com/codeset-ai/codeset-sdk/tree/main/api.md).
|
|
48
|
+
The REST API documentation can be found on [docs.codeset.ai](https://docs.codeset.ai). The full API of this library can be found in [api.md](https://github.com/codeset-ai/codeset-sdk/tree/main/api.md).
|
|
48
49
|
|
|
49
50
|
## Installation
|
|
50
51
|
|
|
@@ -10,7 +10,7 @@ It is generated with [Stainless](https://www.stainless.com/).
|
|
|
10
10
|
|
|
11
11
|
## Documentation
|
|
12
12
|
|
|
13
|
-
The full API of this library can be found in [api.md](api.md).
|
|
13
|
+
The REST API documentation can be found on [docs.codeset.ai](https://docs.codeset.ai). The full API of this library can be found in [api.md](api.md).
|
|
14
14
|
|
|
15
15
|
## Installation
|
|
16
16
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "codeset"
|
|
3
|
-
version = "0.1.0-alpha.
|
|
3
|
+
version = "0.1.0-alpha.9"
|
|
4
4
|
description = "The official Python library for the codeset API"
|
|
5
5
|
dynamic = ["readme"]
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -24,6 +24,7 @@ classifiers = [
|
|
|
24
24
|
"Programming Language :: Python :: 3.10",
|
|
25
25
|
"Programming Language :: Python :: 3.11",
|
|
26
26
|
"Programming Language :: Python :: 3.12",
|
|
27
|
+
"Programming Language :: Python :: 3.13",
|
|
27
28
|
"Operating System :: OS Independent",
|
|
28
29
|
"Operating System :: POSIX",
|
|
29
30
|
"Operating System :: MacOS",
|
|
@@ -48,15 +48,15 @@ filelock==3.12.4
|
|
|
48
48
|
frozenlist==1.6.2
|
|
49
49
|
# via aiohttp
|
|
50
50
|
# via aiosignal
|
|
51
|
-
h11==0.
|
|
51
|
+
h11==0.16.0
|
|
52
52
|
# via httpcore
|
|
53
|
-
httpcore==1.0.
|
|
53
|
+
httpcore==1.0.9
|
|
54
54
|
# via httpx
|
|
55
55
|
httpx==0.28.1
|
|
56
56
|
# via codeset
|
|
57
57
|
# via httpx-aiohttp
|
|
58
58
|
# via respx
|
|
59
|
-
httpx-aiohttp==0.1.
|
|
59
|
+
httpx-aiohttp==0.1.8
|
|
60
60
|
# via codeset
|
|
61
61
|
idna==3.4
|
|
62
62
|
# via anyio
|
|
@@ -36,14 +36,14 @@ exceptiongroup==1.2.2
|
|
|
36
36
|
frozenlist==1.6.2
|
|
37
37
|
# via aiohttp
|
|
38
38
|
# via aiosignal
|
|
39
|
-
h11==0.
|
|
39
|
+
h11==0.16.0
|
|
40
40
|
# via httpcore
|
|
41
|
-
httpcore==1.0.
|
|
41
|
+
httpcore==1.0.9
|
|
42
42
|
# via httpx
|
|
43
43
|
httpx==0.28.1
|
|
44
44
|
# via codeset
|
|
45
45
|
# via httpx-aiohttp
|
|
46
|
-
httpx-aiohttp==0.1.
|
|
46
|
+
httpx-aiohttp==0.1.8
|
|
47
47
|
# via codeset
|
|
48
48
|
idna==3.4
|
|
49
49
|
# via anyio
|
|
@@ -8,14 +8,8 @@ __all__ = ["ContainerInfo"]
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
class ContainerInfo(BaseModel):
|
|
11
|
-
api_url: str
|
|
12
|
-
"""URL of the container API."""
|
|
13
|
-
|
|
14
|
-
container_ip: str
|
|
15
|
-
"""IP address of the container."""
|
|
16
|
-
|
|
17
11
|
container_name: str
|
|
18
|
-
"""Name of the
|
|
12
|
+
"""Name of the Cloud Run service."""
|
|
19
13
|
|
|
20
14
|
created_at: datetime
|
|
21
15
|
"""Timestamp when the container was created (UTC)."""
|
|
@@ -26,5 +20,8 @@ class ContainerInfo(BaseModel):
|
|
|
26
20
|
sample_id: str
|
|
27
21
|
"""Sample ID of the container."""
|
|
28
22
|
|
|
23
|
+
service_url: str
|
|
24
|
+
"""URL of the Cloud Run service."""
|
|
25
|
+
|
|
29
26
|
status: str
|
|
30
27
|
"""Status of the container."""
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|