ci Tests Build Docs
pypi Version License Python Versions
qa security: bandit code style: black

TlHelp32

An idiomatic Python API for the Windows Tool Help library.

Installation

Python 3.7+ is required.

pip install tlhelp32

More installation methods.

Getting Started

Traversing a snapshot:

import tlhelp32

with tlhelp32.Snapshot() as snapshot:
    print([repr(heap) for heap in snapshot.heaps])
    print([repr(module) for module in snapshot.modules])
    print([repr(process) for process in snapshot.processes])
    print([repr(thread) for thread in snapshot.threads])

More examples.

License

The code in this project is licensed under the ISC license.