Capsule adapter for Python applications — execute Python and JavaScript code in isolated WebAssembly sandboxes
Project description
Capsule Python Adapter
Execute Python and JavaScript code securely inside Capsule sandboxes from your Python applications.
Installation
pip install capsule-run-adapter
Usage
Execute Python Code
from capsule_adapter import run_python
result = await run_python("""
print("Hello from Python!")
x = 5 + 3
x * 2
""")
print(result) # "Hello from Python!\n16"
Execute JavaScript Code
from capsule_adapter import run_javascript
result = await run_javascript("""
console.log("Hello from JavaScript!");
const x = 5 + 3;
x * 2;
""")
print(result) # "Hello from JavaScript!\n16"
Preload Sandboxes (Optional)
The first execution of a sandbox has a cold start (~1 second). You can preload sandboxes to warm them up for faster subsequent executions (~10ms):
import asyncio
from capsule_adapter import load_sandboxes, run_python
async def main():
# Preload sandboxes
await load_sandboxes()
# Or preload individually
# await load_python_sandbox() # Warm up Python only
# await load_javascript_sandbox() # Warm up JavaScript only
# Fast execution
result = await run_python('print("Fast!")')
print(result)
asyncio.run(main())
Sessions (Persistent State)
Use Session to run code across multiple calls while preserving state. Each session gets an isolated workspace directory that is automatically cleaned up when the session ends.
from capsule_adapter import Session
async with Session() as s:
await s.run("x = 1")
result = await s.run("x += 1; x")
print(result) # 2
JavaScript sessions work the same way:
async with Session("javascript") as s:
await s.run("x = 1")
result = await s.run("x += 1; x")
print(result) # 2
Import Files
Copy a file or directory from your filesystem into the session workspace. The sandbox code can then access it at the destination path under workspace/.
async with Session() as s:
# Import a single file
await s.import_file("./notes.txt", "notes.txt")
result = await s.run("""
with open("workspace/notes.txt") as f:
content = f.read()
content
""")
Export Files
Export file from the session workspace to your filesystem.
async with Session() as s:
await s.import_file("./notes.txt", "notes.txt")
# ... do some work ...
await s.export_file("notes.txt", "./exported_notes.txt")
Delete Files
Remove a file from the session workspace:
async with Session() as s:
await s.import_file("./notes.txt", "notes.txt")
# ... do some work ...
await s.delete_file("notes.txt")
Reset State
Clear the session's variable state without touching workspace files:
async with Session() as s:
await s.run("x = 42")
await s.reset()
result = await s.run("x") # raises NameError
How It Works
The adapter compiles Python and JavaScript sandboxes into WebAssembly modules during the build step. When you call run_python() or run_javascript(), the adapter invokes these pre-built sandboxes using Capsule's runner with the code you provide.
Learn more about Capsule.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file capsule_run_adapter-0.3.3.tar.gz.
File metadata
- Download URL: capsule_run_adapter-0.3.3.tar.gz
- Upload date:
- Size: 21.0 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15f9c8dda46ebc0629ee6e009b091fbe940159e38153105d6c5295378cc13173
|
|
| MD5 |
06724883cca2832e75dba7444fc0b32e
|
|
| BLAKE2b-256 |
7fd2aaaaa94be0861b8b368c5e2024fcbf567ad367a935ecc26141aaf98f8e2d
|
File details
Details for the file capsule_run_adapter-0.3.3-py2.py3-none-any.whl.
File metadata
- Download URL: capsule_run_adapter-0.3.3-py2.py3-none-any.whl
- Upload date:
- Size: 21.2 MB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1029e674425d8b5d59e731326e975478b7366951a67b45a29213e27c3d4b99f2
|
|
| MD5 |
f52e78089cecd5a28b845aefa58653ff
|
|
| BLAKE2b-256 |
98cd8f5e1016ed5f3aabf03bab02e6c0de71c08169a4dda691fcc71c6087e92d
|