Python library usage
July 15, 2026 ยท View on GitHub
You can use Speakeasy as a Python library through the speakeasy.Speakeasy interface.
Minimal DLL emulation flow
import speakeasy
se = speakeasy.Speakeasy()
module = se.load_module("sample.dll")
se.run_module(module, all_entrypoints=True)
report = se.get_report()
se.shutdown()
Calling a specific export
import speakeasy
se = speakeasy.Speakeasy()
module = se.load_module("sample.dll")
se.run_module(module)
for export in module.get_exports():
if export.name == "myexport":
se.call(export.address, [0x0, 0x1])
report = se.get_report()
se.shutdown()
Library options you may want
- pass
config=to control environment and analysis - pass
argv=to populate emulated process arguments - pass
volumes=to mount host paths into emulated filesystem - pass
gdb_port=to block for GDB attach before execution;gdb_host=controls the bind address and defaults to127.0.0.1
For runnable scripts, see ../examples.