An open API service indexing awesome lists of open source software.

https://github.com/demberto/tlhelp32

A Pythonic API for the Windows Tool Help library.
https://github.com/demberto/tlhelp32

python tlhelp32 win32

Last synced: 2 months ago
JSON representation

A Pythonic API for the Windows Tool Help library.

Awesome Lists containing this project

README

        


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](https://tlhelp32.rtfd.io/en/latest/installation) installation methods.

## Getting Started

Traversing a snapshot:

```python
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](https://github.com/demberto/tlhelp32/tree/master/examples) examples.

## License

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