e2b-code-interpreter 1.0.5__tar.gz → 1.2.1rc1__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.
- {e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/PKG-INFO +3 -2
- {e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/e2b_code_interpreter/code_interpreter_async.py +3 -0
- {e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/pyproject.toml +2 -2
- {e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/README.md +0 -0
- {e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/e2b_code_interpreter/__init__.py +0 -0
- {e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/e2b_code_interpreter/charts.py +0 -0
- {e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/e2b_code_interpreter/code_interpreter_sync.py +0 -0
- {e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/e2b_code_interpreter/constants.py +0 -0
- {e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/e2b_code_interpreter/exceptions.py +0 -0
- {e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/e2b_code_interpreter/models.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: e2b-code-interpreter
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.2.1rc1
|
|
4
4
|
Summary: E2B Code Interpreter - Stateful code execution
|
|
5
5
|
Home-page: https://e2b.dev/
|
|
6
6
|
License: Apache-2.0
|
|
@@ -14,8 +14,9 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
18
|
Requires-Dist: attrs (>=21.3.0)
|
|
18
|
-
Requires-Dist: e2b (
|
|
19
|
+
Requires-Dist: e2b (==1.2.0rc1)
|
|
19
20
|
Requires-Dist: httpx (>=0.20.0,<1.0.0)
|
|
20
21
|
Project-URL: Bug Tracker, https://github.com/e2b-dev/code-interpreter/issues
|
|
21
22
|
Project-URL: Repository, https://github.com/e2b-dev/code-interpreter/tree/main/python
|
|
@@ -57,6 +57,9 @@ class AsyncSandbox(BaseAsyncSandbox):
|
|
|
57
57
|
|
|
58
58
|
default_template = DEFAULT_TEMPLATE
|
|
59
59
|
|
|
60
|
+
def __init__(self, sandbox_id: str, connection_config: ConnectionConfig):
|
|
61
|
+
super().__init__(sandbox_id=sandbox_id, connection_config=connection_config)
|
|
62
|
+
|
|
60
63
|
@property
|
|
61
64
|
def _jupyter_url(self) -> str:
|
|
62
65
|
return f"{'http' if self.connection_config.debug else 'https'}://{self.get_host(JUPYTER_PORT)}"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "e2b-code-interpreter"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.2.1rc1"
|
|
4
4
|
description = "E2B Code Interpreter - Stateful code execution"
|
|
5
5
|
authors = ["e2b <hello@e2b.dev>"]
|
|
6
6
|
license = "Apache-2.0"
|
|
@@ -14,7 +14,7 @@ python = "^3.8"
|
|
|
14
14
|
|
|
15
15
|
httpx = ">=0.20.0, <1.0.0"
|
|
16
16
|
attrs = ">=21.3.0"
|
|
17
|
-
e2b = "
|
|
17
|
+
e2b = "1.2.0rc1"
|
|
18
18
|
|
|
19
19
|
[tool.poetry.group.dev.dependencies]
|
|
20
20
|
pytest = "^7.4.0"
|
|
File without changes
|
{e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/e2b_code_interpreter/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/e2b_code_interpreter/constants.py
RENAMED
|
File without changes
|
{e2b_code_interpreter-1.0.5 → e2b_code_interpreter-1.2.1rc1}/e2b_code_interpreter/exceptions.py
RENAMED
|
File without changes
|
|
File without changes
|