This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
wasm-micro-runtime/language-bindings/python/wasm-c-api
liang.he 915b4d2a89
Fix few wasm-c-api python binding issues (#2029)
How to python language binding test cases:
```
$ cd <wamr_dir>/language-bindings/python
$ python -m pip install -e .
$ cd wasm-c-api
$ python -m unittest tests/test_basic.py
$ python -m unittest tests/test_advanced.py
```
2023-03-15 12:34:34 +08:00
..
docs Add WAMR API bindings in Python (#1959) 2023-02-16 15:21:28 +08:00
samples Add WAMR API bindings in Python (#1959) 2023-02-16 15:21:28 +08:00
tests Fix few wasm-c-api python binding issues (#2029) 2023-03-15 12:34:34 +08:00
utils Add WAMR API bindings in Python (#1959) 2023-02-16 15:21:28 +08:00
README.md Add WAMR API bindings in Python (#1959) 2023-02-16 15:21:28 +08:00
requirements.txt Add WAMR API bindings in Python (#1959) 2023-02-16 15:21:28 +08:00

WASM-C-API

Examples

There is a simple example to show how to use bindings. Actually, the python binding follows C-APIs. There it should be easy if be familiar with programming with wasm-c-api.

Unit test cases under ./tests could be another but more complete references.