scalebox-sdk 0.1.13__py3-none-any.whl → 0.1.14__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.
@@ -1,11 +0,0 @@
1
- from dotenv import load_dotenv
2
-
3
- load_dotenv()
4
- from e2b_code_interpreter import Sandbox
5
-
6
- sbx = Sandbox.create() # By default the sandbox is alive for 5 minutes
7
- execution = sbx.run_code("print('hello world')") # Execute Python inside the sandbox
8
- print(execution)
9
-
10
- files = sbx.files.list("/")
11
- print(files)