Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/segevfiner/windbgmon
Monitor Windows OutputDebugString messages
https://github.com/segevfiner/windbgmon
outputdebugstring outputdebugstringa outputdebugstringw python python3 windbg
Last synced: 5 days ago
JSON representation
Monitor Windows OutputDebugString messages
- Host: GitHub
- URL: https://github.com/segevfiner/windbgmon
- Owner: segevfiner
- License: mit
- Created: 2022-01-14T13:40:11.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-10-09T19:04:25.000Z (about 2 years ago)
- Last Synced: 2024-10-14T11:35:59.550Z (30 days ago)
- Topics: outputdebugstring, outputdebugstringa, outputdebugstringw, python, python3, windbg
- Language: Python
- Homepage: https://pypi.org/project/windbgmon/
- Size: 181 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
windbgmon
=========
.. image:: https://img.shields.io/pypi/v/windbgmon.svg
:target: https://pypi.org/project/windbgmon/
:alt: PyPI.. image:: https://github.com/segevfiner/windbgmon/actions/workflows/docs.yml/badge.svg
:target: https://segevfiner.github.io/windbgmon/
:alt: DocsMonitor Windows OutputDebugString messages.
Quick Start:
.. code-block:: python
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``.