Download Latest Version e2b@2.35.0 source code.zip (2.1 MB)
Email in envelope

Get an email when there's a new version of E2B

Home / @e2b_python-sdk@2.33.0
Name Modified Size InfoDownloads / Week
Parent folder
@e2b_python-sdk@2.33.0 source code.tar.gz 2026-07-16 1.7 MB
@e2b_python-sdk@2.33.0 source code.zip 2026-07-16 2.1 MB
README.md 2026-07-16 807 Bytes
Totals: 3 Items   3.8 MB 0

Minor Changes

  • 2c77fc0: Add a name filter to Sandbox.listSnapshots() / Sandbox.list_snapshots().

The filter accepts a snapshot name or ID, optionally tag-qualified (e.g. "my-snapshot", "my-team/my-snapshot" or "my-snapshot:v1"). Unknown names return an empty list rather than an error. It can be combined with the existing sandboxId / sandbox_id filter (results must match both).

ts // JS/TS const paginator = Sandbox.listSnapshots({ name: 'my-snapshot' }) const snapshots = await paginator.nextItems()

```python # Python (sync) paginator = Sandbox.list_snapshots(name="my-snapshot") snapshots = paginator.next_items()

# Python (async) paginator = AsyncSandbox.list_snapshots(name="my-snapshot") snapshots = await paginator.next_items() ```

Source: README.md, updated 2026-07-16