wasmer-python icon indicating copy to clipboard operation
wasmer-python copied to clipboard

🐍🕸 WebAssembly runtime for Python

Results 91 wasmer-python issues
Sort by recently updated
recently updated
newest added

### Describe the bug This wasm file is to test whether a wasm runtime could deal with the error of `index out of bounds` errors when import_global_index is greeter than...

🐞 bug

### Describe the bug Using wasmer python to execute the tmp.wasm with wasi. The wasm file is : [tmp-wasm.txt](https://github.com/wasmerio/wasmer-python/files/11188603/tmp-wasm.txt) The python file is : ``` import os from wasmer import...

🐞 bug

### Describe the bug Register allocation error when executing tmp.py file. Both macOS and ubuntu20.04 encountered the problem. ### Steps to reproduce The wat file: ``` (module (type (;0;) (func...

🐞 bug

### Describe the bug Use wasmer-python to execute the following wat file: ``` (module (func (result v128) v128.const f32x4 0 0 0 0 f32x4.abs v128.not) (export "func1" (func 0)) )...

🐞 bug

### Summary How to support simd instructions in wasmer-python? ### Additional details ``` import os from wasmer import engine, wat2wasm, Store, Module, Instance from wasmer_compiler_llvm import Compiler engine = engine.Universal(Compiler)...

❓ question

### Motivation I made a simple `WASM` image filter, I tested it on the browser, compare it to pure js version and tried wasmer to run the filter. There was...

🎉 enhancement

### Describe the bug I may hit a memory leak when creating a WebAssembly Instance. RSS does increase with each created `Module` object. ### Steps to reproduce I created a...

🐞 bug

### Summary I want to use a WASI binary produced by TinyGo (0.26.0) in Python capturing the output from an exported function to a variable. Specifically the `parse` method defined...

❓ question

Thanks for the bug report! ### Describe the bug Attempting to run wasmer on Python 3.10 on an arm Mac fails w/: ``` ImportError: Wasmer is not available on this...

🐞 bug

### Motivation In order to interact with my wasm program from Python I need to be able to get the function pointers stored in a table. I had a look...

🎉 enhancement