componentize-py icon indicating copy to clipboard operation
componentize-py copied to clipboard

Results 32 componentize-py issues
Sort by recently updated
recently updated
newest added

Per [yesterday's Python guest tooling](https://github.com/bytecodealliance/meetings/pull/152) meeting, we'd like `componentize-py` to download any dependencies found in the application's `pyproject.toml` (including transitive dependencies), placing them in a temporary directory for use while...

Currently, `componentize-py` "cheats" by assuming all required Python code will be loaded during the component pre-init step, and thus CPython won't need access to any of those files at runtime....

The pre-initialization process currently involves an exported anonymous interface and types (defined in init.wit). That should be stripped out of the final component since it's not part of the application's...

We should run all the tests on Mac and Windows -- not just Linux. Also, we should test the examples to ensure they keep working.

Great library everyone - I'm really impressed. I reproduced the example just fine on Windows 11. Anyway, maybe this is just the nature of Wasm Components, or it's necessary to...

Hi! Apparently cpython was compiled without `zlib` support, which is required by the [requests](https://docs.python-requests.org/en/latest/index.html) library (probably the most used/famous http library in python). ``` % poetry run componentize-py --wit-path myapp/wit...

Trying to run the http example using wasmtime 21.0.1, I get the following error: ```shell Error: memory index 0 has a minimum page size of 223 which exceeds the limit...

Highlights are that all wasm-tools packages and wasmtime are at their latest versions.

It would be nice to include a header in generated bindings that clearly marks it as generated code that should not be edited by users. This is quite common with...

When the .wasm file raises an error, the resulting backtrace does not contain any reference to the original source files (even using `wasmtime::WasmBacktraceDetails::Enable`). With Rust and Go components it's possible...