Python wrapper for the ROM browser-like runtime
Project description
rom-runtime
Python bindings for the ROM browser-like runtime.
This package exposes a thin Python API on top of ROM:
eval()eval_async()eval_json()surface_snapshot()fingerprint_probe()run_fingerprintjs_harness()fingerprintjs_version()
It prefers a native PyO3 extension when available and falls back to the ROM CLI bridge otherwise.
Install
pip install rom-runtime
Usage
from rom import RomRuntime, has_native_binding
runtime = RomRuntime(
{
"href": "https://example.test/",
"cors_enabled": False,
"proxy_url": None,
}
)
href = runtime.eval_async("(async () => location.href)()")
snapshot = runtime.surface_snapshot()
print("native:", has_native_binding())
print(href)
print(snapshot["fetch"])
Config keys use the Rust runtime field names, so use snake_case such as cors_enabled and proxy_url.
cors_enabled is False by default.
Optional native build from source
python -m pip install maturin
python -m maturin build --manifest-path bindings/gom-python/Cargo.toml --release
Common methods
eval()eval_async()eval_json()surface_snapshot()fingerprint_probe()run_fingerprintjs_harness()fingerprintjs_version()
Environment
ROM_FORCE_CLI_BRIDGE=1: disable the native path and force CLI fallbackROM_BRIDGE_BIN: explicit path to therom_bridgeexecutableROM_BRIDGE_CWD: working directory used by the CLI fallback
More docs
- Root guide: ../../README.md
- LLM guide: ../../LLMS.md
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 Distributions
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 rom_runtime-0.0.1-cp39-abi3-win_amd64.whl.
File metadata
- Download URL: rom_runtime-0.0.1-cp39-abi3-win_amd64.whl
- Upload date:
- Size: 3.0 MB
- Tags: CPython 3.9+, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c3b6bb2c36db282535d1e50f443423b4ca2af1015f8fbbfcd745fa544736db8
|
|
| MD5 |
f409844fe7902a032192dec80ae976dd
|
|
| BLAKE2b-256 |
8529528947f51bf632d731ebd26bc478582e7c05edb2f33502a90a5a0823a49b
|