Skip to main content

Wasmer SDK for Python

Run Wasmer packages in lightweight, composable sandboxes from Python. The public API is handwritten and typed; a Python-independent UniFFI library calls the Rust wasmer-sdk underneath.

Package download progress

packages = await wasmer.packages.load_many(
    ["wasmer/bash", "python/python"],
    on_progress=lambda p: print(p.phase.value, p.download.percent, p.download.downloaded_bytes),
)

packages.load and sandbox.install_package accept the same keyword-only on_progress. sandboxes.create accepts on_package_progress. Snapshots are immutable dataclasses and use Python's None for an unknown total/percentage. Callbacks run on the calling asyncio loop. An exception is reported through the loop's exception handler and detaches the observer without failing the load. Cancelling the asyncio task cancels its acquisition.

Progress is a snapshot, not a delta. download contains downloaded bytes, an optional total, and an optional percentage from 0 to 100. Totals include the unique required package artifacts and their dependencies, weighted by bytes. Unknown sizes stay indeterminate. Counts describe decoded package bodies; SDK cache hits and local sources add zero download bytes. An entirely cached or local load reports 0 bytes of 0 and 100%.

The phases are resolving, downloading, loading, and ready. Downloading can overlap resolution. 100% means the transfer is complete; await the load before using the package. The callback does not cover SDK initialization, guest execution, or guest npm/pip downloads. The final ready snapshot is delivered before a successful load returns, with no callbacks after settlement. Errors use the existing load error channel and do not emit ready.

Batch results preserve input order. Concurrent loads on the same client share in-flight downloads. Cancelling one caller does not interrupt other callers; cancelling the last subscriber stops its acquisition. Callbacks are serialized per operation, coalesced to about ten byte updates per second, with phase changes and completion delivered promptly. Keep callbacks short.

Install

pip install wasmer-sdk

Published wheels support macOS and Linux on arm64 and x86_64. One wheel works across supported Python 3 versions on the same platform because the native boundary does not use the CPython ABI.

Load or create a package from Wasm

Load a single raw WASI/WASIX module with pkg = await wasmer.packages.load(Path("hello.wasm").read_bytes()). Byte sources detect Wasm or WEBC by their contents. Raw modules must export _start; their single command and entrypoint are named main automatically. Run with sandbox.command(pkg) or sandbox.command("main"). WEBC packages retain their declared commands and entrypoint.

Create a reusable package from module bytes and optional bundled files:

from pathlib import Path
from wasmer_sdk import PackageCommandDefinition, PackageDefinition, Wasmer

async def run_module():
    async with Wasmer() as wasmer:
        pkg = await wasmer.packages.create(PackageDefinition(
            modules={"app": Path("hello.wasm").read_bytes()},
            commands={"hello": PackageCommandDefinition(module="app")},
            files={"/data/config.json": '{"debug":true}'},
        ))
        async with await wasmer.sandboxes.create(packages=[pkg]) as sandbox:
            print((await sandbox.command(pkg, ["--help"]).run()).text())

Creation copies module and file data into an in-memory package without a WEBC archive. Command modules must export _start and run with the existing WASI/WASIX runner. One command becomes the entrypoint automatically; with multiple commands, set entrypoint="hello" or select pkg.command("hello"). File keys are absolute guest paths without . or .. segments. Package file writes use private execution overlays; use the sandbox workspace for persistent data. The result also works with sandbox.install_package(pkg).

Run Python inside Wasmer

import asyncio

from wasmer_sdk import Wasmer


async def main() -> None:
    wasmer = Wasmer()
    sandbox = await wasmer.sandboxes.create(
        packages=["python/python@=3.13.20"],
        files={
            "main.py": "print(sum(n * n for n in range(10)))",
        },
    )
    output = await sandbox.command(
        "python", ["/workspace/main.py"]
    ).run()
    print(output.text())


asyncio.run(main())

The @= package-version syntax is an exact pin. Use it when a sandbox must resolve the same Wasmer package version on every run.

Constructing Wasmer() is synchronous. Operations that perform I/O are awaited. A wasmer instance can be reused across multiple sandboxes. For long-lived applications and tests, use async with for deterministic cleanup:

async def main() -> None:
    async with Wasmer() as wasmer:
        sandbox = await wasmer.sandboxes.create(
            packages=["python/python@=3.13.20"],
        )
        async with sandbox:
            output = await sandbox.command(
                "python", ["--version"]
            ).run()
            print(output.text())


asyncio.run(main())

run() raises ProcessExitError for a non-zero exit, termination, or timeout by default. Pass check=False when the outcome is expected and should be inspected as an Output. Spawned-process wait() remains unchecked by default.

Live processes expose asynchronous stdin, stdout, and stderr streams. process.stdout.lines() is an async iterator suitable for servers and agent loops.

Networking and caching

Network access is an explicit sandbox capability:

sandbox = await wasmer.sandboxes.create(
    packages=["wasmer/edgejs@0.2.0"],
    network="host",
)

Packages and native compiled artifacts are cached in .wasmer by default:

wasmer = Wasmer(cache_root=".cache/wasmer")

The registry and downloaded package layout is shared with Node.js and Rust. Compiled artifacts remain target-specific.

Examples

Run the same guest programs used by the JavaScript and Rust SDK examples:

python3 python/examples/python.py
python3 python/examples/multiple_runtimes.py
python3 python/examples/edgejs_http.py
python3 python/examples/postgres_psql.py

The PostgreSQL example requires psql on PATH; pass --psql /path/to/psql otherwise. The common guest inputs live in ../fixtures/.

Build and test locally

From the repository root, install Rust 1.95 and build the UniFFI module:

rustup toolchain install 1.95.0 --profile minimal
python3 python/scripts/build.py --release

Binary releases contain Python 3 wheels for Linux x86_64/ARM64 and macOS Intel/Apple Silicon. Each wheel has a py3-none ABI tag; a separate wheel per Python minor version is unnecessary. The exact wheels published to PyPI are also attached to wasmer-sdk-python-v<version> GitHub releases with checksums.

The builder enables native V8/Node-API integration on Linux x86_64 and macOS Apple Silicon. The pinned V8 build does not support Linux ARM64 or macOS Intel; those wheels use the sys backend for Wasm/WASI/WASIX and do not support native N-API guests such as Edge.js. Use --backend sys or --backend napi-v8 to select the backend explicitly when building locally.

Run the Python suite against that local module:

PYTHONPATH=python/src \
  python3 -m unittest discover -s python/tests -v

Run an individual example against the local build:

PYTHONPATH=python/src python3 python/examples/python.py

The PostgreSQL tests require native psql. Set PSQL=/path/to/psql when it is not on PATH.

The generated _native.py module and platform library are private implementation details. Applications should import only from wasmer_sdk.

Release files for wasmer-sdk 0.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for wasmer-sdk 0.4.0
File
wasmer_sdk-0.4.0-py3-none-manylinux_2_35_x86_64.whl Python 3 none Linux glibc 2.35+ x86-64 Details
wasmer_sdk-0.4.0-py3-none-manylinux_2_34_aarch64.whl Python 3 none Linux glibc 2.34+ ARM64 Details
wasmer_sdk-0.4.0-py3-none-macosx_11_0_arm64.whl Python 3 none macOS 11.0+ ARM64 Details
wasmer_sdk-0.4.0-py3-none-macosx_10_13_x86_64.whl Python 3 none macOS 10.13+ x86-64 Details

Total release size: 97.2 MB

Release files / wasmer_sdk-0.4.0-py3-none-manylinux_2_35_x86_64.whl

Download URL wasmer_sdk-0.4.0-py3-none-manylinux_2_35_x86_64.whl
Size 34.9 MB
Tags Linux glibc 2.35+ x86-64 Python 3
SHA-256 checksum
How to use checksums
ea7ae25f49c8fd9365995ed0831ced8468d6205468ea7bba80d01846e435f0ed
BLAKE2b-256 checksum
How to use checksums
9d591f3ee65d97a87be06ad956f67432df6cb7f765a160be37f9fb0c18b11553
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / wasmer_sdk-0.4.0-py3-none-manylinux_2_34_aarch64.whl

Download URL wasmer_sdk-0.4.0-py3-none-manylinux_2_34_aarch64.whl
Size 16.3 MB
Tags Linux glibc 2.34+ ARM64 Python 3
SHA-256 checksum
How to use checksums
5002936785c361e478ba79dded1d46f19dd90f54766099681265184b78c2440a
BLAKE2b-256 checksum
How to use checksums
85032ec0d1881fe2ea0cc5c30f5ffbeb4168ef41e562f0e34bf451430a210fec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / wasmer_sdk-0.4.0-py3-none-macosx_11_0_arm64.whl

Download URL wasmer_sdk-0.4.0-py3-none-macosx_11_0_arm64.whl
Size 30.1 MB
Tags Python 3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ae86bd1a313822f443014e11dfb8adaf3199d6f0415ede6987fb36f36b915140
BLAKE2b-256 checksum
How to use checksums
dde8d6bdba0064e46a39407edcd174c62cd660fcd9a383f800c940a936ed2f6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release files / wasmer_sdk-0.4.0-py3-none-macosx_10_13_x86_64.whl

Download URL wasmer_sdk-0.4.0-py3-none-macosx_10_13_x86_64.whl
Size 15.9 MB
Tags Python 3 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
a60c9297c96ff6ad572ed9e325dfd15ee04a45aca0fe42fe4e200e00499c531b
BLAKE2b-256 checksum
How to use checksums
133787845c0f3b78c709ee760bb22b8b5f060edb948e1becc079ae87d5afaaa1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.

Transparency log

Release history Release notifications | RSS feed

0.5.0

4 release files

This release

0.4.0 This release

4 release files

0.3.0

4 release files

0.2.1

4 release files

0.2.0

4 release files

0.1.2

4 release files

0.1.1

4 release files

0.1.0

4 release files

0.0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page