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.
- Host: GitHub
- URL: https://github.com/demberto/tlhelp32
- Owner: demberto
- License: isc
- Created: 2022-05-27T08:13:00.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-05-27T15:25:47.000Z (almost 3 years ago)
- Last Synced: 2025-01-26T09:15:05.663Z (4 months ago)
- Topics: python, tlhelp32, win32
- Language: Python
- Homepage: https://tlhelp32.rtfd.io
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# 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 tlhelp32with 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**.