scalebox-sdk 0.1.4__py3-none-any.whl → 0.1.25__py3-none-any.whl
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.
- scalebox/__init__.py +1 -1
- scalebox/api/__init__.py +128 -128
- scalebox/api/client/__init__.py +8 -8
- scalebox/api/client/api/sandboxes/get_sandboxes.py +5 -3
- scalebox/api/client/api/sandboxes/get_sandboxes_sandbox_id_metrics.py +2 -2
- scalebox/api/client/api/sandboxes/post_sandboxes.py +2 -2
- scalebox/api/client/client.py +288 -288
- scalebox/api/client/models/listed_sandbox.py +11 -9
- scalebox/api/client/models/new_sandbox.py +1 -1
- scalebox/api/client/models/sandbox.py +125 -125
- scalebox/api/client/models/sandbox_state.py +1 -0
- scalebox/api/client/types.py +46 -46
- scalebox/code_interpreter/code_interpreter_async.py +370 -369
- scalebox/code_interpreter/code_interpreter_sync.py +318 -317
- scalebox/connection_config.py +92 -92
- scalebox/csx_desktop/main.py +12 -12
- scalebox/generated/api_pb2_connect.py +17 -66
- scalebox/sandbox_async/commands/command.py +307 -307
- scalebox/sandbox_async/commands/command_handle.py +187 -187
- scalebox/sandbox_async/commands/pty.py +187 -187
- scalebox/sandbox_async/filesystem/filesystem.py +557 -557
- scalebox/sandbox_async/filesystem/watch_handle.py +61 -61
- scalebox/sandbox_async/main.py +647 -646
- scalebox/sandbox_async/sandbox_api.py +365 -365
- scalebox/sandbox_async/utils.py +7 -7
- scalebox/sandbox_sync/__init__.py +2 -2
- scalebox/sandbox_sync/commands/command.py +300 -300
- scalebox/sandbox_sync/commands/command_handle.py +150 -150
- scalebox/sandbox_sync/commands/pty.py +181 -181
- scalebox/sandbox_sync/filesystem/filesystem.py +543 -543
- scalebox/sandbox_sync/filesystem/watch_handle.py +66 -66
- scalebox/sandbox_sync/main.py +789 -790
- scalebox/sandbox_sync/sandbox_api.py +356 -356
- scalebox/test/CODE_INTERPRETER_TESTS_READY.md +256 -256
- scalebox/test/README.md +164 -164
- scalebox/test/aclient.py +72 -72
- scalebox/test/code_interpreter_centext.py +21 -21
- scalebox/test/code_interpreter_centext_sync.py +21 -21
- scalebox/test/code_interpreter_test.py +1 -1
- scalebox/test/code_interpreter_test_sync.py +1 -1
- scalebox/test/run_all_validation_tests.py +334 -334
- scalebox/test/test_basic.py +78 -78
- scalebox/test/test_code_interpreter_async_comprehensive.py +2653 -2653
- scalebox/test/{test_code_interpreter_e2bsync_comprehensive.py → test_code_interpreter_execcode.py} +328 -392
- scalebox/test/test_code_interpreter_sync_comprehensive.py +3416 -3412
- scalebox/test/test_csx_desktop_examples.py +130 -0
- scalebox/test/test_sandbox_async_comprehensive.py +736 -738
- scalebox/test/test_sandbox_stress_and_edge_cases.py +778 -778
- scalebox/test/test_sandbox_sync_comprehensive.py +779 -770
- scalebox/test/test_sandbox_usage_examples.py +987 -987
- scalebox/test/testacreate.py +24 -24
- scalebox/test/testagetinfo.py +18 -18
- scalebox/test/testcodeinterpreter_async.py +508 -508
- scalebox/test/testcodeinterpreter_sync.py +239 -239
- scalebox/test/testcomputeuse.py +2 -2
- scalebox/test/testnovnc.py +12 -12
- scalebox/test/testsandbox_api.py +15 -0
- scalebox/test/testsandbox_async.py +202 -118
- scalebox/test/testsandbox_sync.py +71 -38
- scalebox/version.py +2 -2
- {scalebox_sdk-0.1.4.dist-info → scalebox_sdk-0.1.25.dist-info}/METADATA +104 -103
- {scalebox_sdk-0.1.4.dist-info → scalebox_sdk-0.1.25.dist-info}/RECORD +66 -66
- scalebox/test/test_code_interpreter_e2basync_comprehensive.py +0 -2655
- scalebox/test/test_e2b_first.py +0 -11
- {scalebox_sdk-0.1.4.dist-info → scalebox_sdk-0.1.25.dist-info}/WHEEL +0 -0
- {scalebox_sdk-0.1.4.dist-info → scalebox_sdk-0.1.25.dist-info}/entry_points.txt +0 -0
- {scalebox_sdk-0.1.4.dist-info → scalebox_sdk-0.1.25.dist-info}/licenses/LICENSE +0 -0
- {scalebox_sdk-0.1.4.dist-info → scalebox_sdk-0.1.25.dist-info}/top_level.txt +0 -0
scalebox/test/testacreate.py
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
import asyncio
|
|
2
|
-
import time
|
|
3
|
-
|
|
4
|
-
from scalebox.sandbox_async import AsyncSandbox
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
async def main():
|
|
8
|
-
sandbox = await AsyncSandbox.create(
|
|
9
|
-
template="base", # 或自定义模板名
|
|
10
|
-
api_key="sk-Wk4IgtUYOqnttxGaxZmELEV4p2FXh15Evt0FIcSa",
|
|
11
|
-
timeout=3600,
|
|
12
|
-
)
|
|
13
|
-
print("✅ 沙箱已启动,sandbox_domain:", sandbox.sandbox_domain)
|
|
14
|
-
print("✅ 沙箱已启动,ID:", sandbox.sandbox_id)
|
|
15
|
-
print("✅ 沙箱已启动,connection_config:", sandbox.connection_config)
|
|
16
|
-
print("✅ 沙箱已启动,envd_api_url:", sandbox.envd_api_url)
|
|
17
|
-
time.sleep(20)
|
|
18
|
-
sandboxMetrics = await sandbox.get_metrics()
|
|
19
|
-
for metric in sandboxMetrics:
|
|
20
|
-
print(metric)
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
if __name__ == "__main__":
|
|
24
|
-
asyncio.run(main())
|
|
1
|
+
import asyncio
|
|
2
|
+
import time
|
|
3
|
+
|
|
4
|
+
from scalebox.sandbox_async import AsyncSandbox
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
async def main():
|
|
8
|
+
sandbox = await AsyncSandbox.create(
|
|
9
|
+
template="base", # 或自定义模板名
|
|
10
|
+
api_key="sk-Wk4IgtUYOqnttxGaxZmELEV4p2FXh15Evt0FIcSa",
|
|
11
|
+
timeout=3600,
|
|
12
|
+
)
|
|
13
|
+
print("✅ 沙箱已启动,sandbox_domain:", sandbox.sandbox_domain)
|
|
14
|
+
print("✅ 沙箱已启动,ID:", sandbox.sandbox_id)
|
|
15
|
+
print("✅ 沙箱已启动,connection_config:", sandbox.connection_config)
|
|
16
|
+
print("✅ 沙箱已启动,envd_api_url:", sandbox.envd_api_url)
|
|
17
|
+
time.sleep(20)
|
|
18
|
+
sandboxMetrics = await sandbox.get_metrics()
|
|
19
|
+
for metric in sandboxMetrics:
|
|
20
|
+
print(metric)
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
if __name__ == "__main__":
|
|
24
|
+
asyncio.run(main())
|
scalebox/test/testagetinfo.py
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import asyncio
|
|
2
|
-
import time
|
|
3
|
-
|
|
4
|
-
from sandbox_async import AsyncSandbox
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
async def main():
|
|
8
|
-
sandbox = await AsyncSandbox.get_info(
|
|
9
|
-
sandbox_id="", api_key="sk-Wk4IgtUYOqnttxGaxZmELEV4p2FXh15Evt0FIcSa"
|
|
10
|
-
)
|
|
11
|
-
print("✅ 沙箱已启动,sandbox_domain:", sandbox.sandbox_domain)
|
|
12
|
-
print("✅ 沙箱已启动,ID:", sandbox.sandbox_id)
|
|
13
|
-
print("✅ 沙箱已启动,connection_config:", sandbox.name)
|
|
14
|
-
print("✅ 沙箱已启动,envd_api_url:", sandbox.started_at)
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
if __name__ == "__main__":
|
|
18
|
-
asyncio.run(main())
|
|
1
|
+
import asyncio
|
|
2
|
+
import time
|
|
3
|
+
|
|
4
|
+
from sandbox_async import AsyncSandbox
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
async def main():
|
|
8
|
+
sandbox = await AsyncSandbox.get_info(
|
|
9
|
+
sandbox_id="", api_key="sk-Wk4IgtUYOqnttxGaxZmELEV4p2FXh15Evt0FIcSa"
|
|
10
|
+
)
|
|
11
|
+
print("✅ 沙箱已启动,sandbox_domain:", sandbox.sandbox_domain)
|
|
12
|
+
print("✅ 沙箱已启动,ID:", sandbox.sandbox_id)
|
|
13
|
+
print("✅ 沙箱已启动,connection_config:", sandbox.name)
|
|
14
|
+
print("✅ 沙箱已启动,envd_api_url:", sandbox.started_at)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
if __name__ == "__main__":
|
|
18
|
+
asyncio.run(main())
|