Skip to main content

Open-source fork-on-write microVM sandbox primitive (E2B-compatible surface)

Project description

forkd — Python SDK

E2B-compatible sandbox API backed by forkd.

from forkd import Sandbox

with Sandbox() as sandbox:
    result = sandbox.commands.run("python3 -c 'import numpy; print(numpy.zeros(3))'")
    print(result.stdout)        # [0. 0. 0.]
    print(result.exit_code)     # 0

Or with explicit lifecycle:

sandbox = Sandbox()
result = sandbox.commands.run("echo hello")
sandbox.kill()

Bonus: warmed-state eval

If your snapshot parent imported numpy, you can skip subprocess overhead and use the warmed PID-1 interpreter directly:

with Sandbox() as sandbox:
    out = sandbox.eval("numpy.zeros(5).tolist()")   # ~8 ms
    # vs commands.run("python3 -c '...'") which is ~108 ms (fresh subprocess)

Requirements

The forkd Rust CLI must be installed and on PATH, plus a parent snapshot must already exist (forkd snapshot --tag pyagent ...). See the main README for the full setup.

Status

Pre-alpha. Currently supports:

  • Sandbox() / Sandbox.create() — spawn one sandbox
  • sandbox.commands.run(cmd) — run command, get stdout/stderr/exit_code
  • sandbox.eval(expr) — eval Python in warmed PID 1
  • sandbox.kill() — terminate

Not yet (blocked on issues #1 + #4):

  • Multiple concurrent Sandbox() instances (all share parent's MAC/IP)
  • sandbox.files.read/write — filesystem operations
  • Streaming output

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

forkd-0.5.3.tar.gz (11.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

forkd-0.5.3-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

Details for the file forkd-0.5.3.tar.gz.

File metadata

  • Download URL: forkd-0.5.3.tar.gz
  • Upload date:
  • Size: 11.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for forkd-0.5.3.tar.gz
Algorithm Hash digest
SHA256 5f854b67328e078c58186a6ebb8479357f01f47267932f31ac926d264a708eff
MD5 e31233bbd0c193384c87367a041cbbe6
BLAKE2b-256 402ae5215c4f811b2c8789d6fbf6f0dffe603a2bdcf2a0ca564a0f9867fb308a

See more details on using hashes here.

Provenance

The following attestation bundles were made for forkd-0.5.3.tar.gz:

Publisher: publish-pypi.yml on deeplethe/forkd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file forkd-0.5.3-py3-none-any.whl.

File metadata

  • Download URL: forkd-0.5.3-py3-none-any.whl
  • Upload date:
  • Size: 10.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for forkd-0.5.3-py3-none-any.whl
Algorithm Hash digest
SHA256 da98b6b9ee083a803f6cd6ace32eb1d7e1294ca2315f78fb3baff1d83ad7fa42
MD5 0f1b96c6a6da9e437d9583c3772011f3
BLAKE2b-256 cfb1faf54ddc1f5a8ac3802a7bf5c268e0a2acae6cbd59ee494aeeb68f5be9f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for forkd-0.5.3-py3-none-any.whl:

Publisher: publish-pypi.yml on deeplethe/forkd

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page