{"library":"qwasm","title":"qwasm","description":"qwasm is a pure-Python WebAssembly decoder and disassembler. It parses WebAssembly binary modules into an intermediate representation and supports disassembly to WAT-like text format. Current version 1.0.1.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install qwasm"],"cli":null},"imports":["from qwasm import parse_module"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import qwasm\n\n# Assuming 'sample.wasm' exists in the current directory\nwith open('sample.wasm', 'rb') as f:\n    data = f.read()\n\nmodule = qwasm.parse_module(data)\nprint(qwasm.disassemble(module))\n","lang":"python","description":"Load a WebAssembly binary, parse it, and print the disassembly.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}