A binding to Deno + worker-vm, helps you execute JavaScript safely.
Project description
A Python 3 to Deno + worker-vm binding, helps you execute JavaScript safely.
How it works
The module launches a Deno REPL server, which can be communicated with JSON. All JavaScript code are encoded in JSON and sent to the server. After the server executing the code in vm, the result is sent back to Python.
Install
Install Deno
Follow the instruction here: https://docs.deno.com/runtime/manual/getting_started/installation
Also make sure deno command works as expected: https://docs.deno.com/runtime/manual/getting_started/installation#testing-your-installation
Install deno_vm
pip install deno_vm
Usage
Most of the APIs are bound to worker-vm.
Simple eval:
from deno_vm import eval
print(eval("['foo', 'bar'].join()"))
Use VM:
from deno_vm import VM
with VM() as vm:
vm.run("""
var sum = 0, i;
for (i = 0; i < 10; i++) sum += i;
""")
print(vm.run("sum"))
It is possible to do async task with Promise:
from datetime import datetime
from deno_vm import VM
js = """
function test() {
return new Promise(resolve => {
setTimeout(() => {
resolve("hello")
}, 3000);
});
};
"""
with VM() as vm:
vm.run(js)
print(datetime.now())
print(vm.call("test"))
print(datetime.now())
API reference
Changelog
0.6.0 (Mar 4, 2024)
Change: use –unstable-worker-options instead of –unstable.
Change: vendor deno dependencies. Now deno_vm doesn’t require network and filesystem write access.
Fix: suppres cleanup error.
Fix: improve uninitialized error message.
0.5.1 (Oct 10, 2023)
Fix: unable to pass initial code to VM().
0.5.0 (Oct 10, 2023)
Switch to deno_vm.
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
File details
Details for the file deno_vm-0.6.0.tar.gz
.
File metadata
- Download URL: deno_vm-0.6.0.tar.gz
- Upload date:
- Size: 29.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9bc7f59035bd197797498f50edeb7c09eedaea8769db4456fa0cb8d1bfd09ca6 |
|
MD5 | 2a31279762b0e5cea565ae4a314a69c5 |
|
BLAKE2b-256 | 7f81d20ca85b73ec8fbf498132bb51ca22f8e455e036ce632a3f6ef3e7f805ce |
File details
Details for the file deno_vm-0.6.0-py3-none-any.whl
.
File metadata
- Download URL: deno_vm-0.6.0-py3-none-any.whl
- Upload date:
- Size: 47.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd24e5a6c936e1fc534dfe42f170e34950ee0e0a895b54b9ae191496e8821f48 |
|
MD5 | ba944ae5cd1b3f91ae817dfe42101663 |
|
BLAKE2b-256 | 86fe56b2f5b90b45ff1493166f0d8af96b86e273590c0ba2bd440edf19dbc930 |