Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 560 Bytes

README.rst

File metadata and controls

23 lines (16 loc) · 560 Bytes

windbgmon

PyPI Docs

Monitor Windows OutputDebugString messages.

Quick Start:

import windbgmon

with windbgmon.DbgMon() as dbgmon:
    for pid, msg in dbgmon:
        print(f"[{pid}] {msg}")

Can also be run as a module: python -m windbgmon.