Welcome to PythonForWindows’s documentation!¶
Description¶
PythonForWindows is a base of code aimed to make interaction with Windows (on X86/X64) easier (for both 32 and 64 bits Python).
Its goal is to offer abstractions around some of the OS features in a (I hope) pythonic way.
It also tries to make the barrier between python and native execution thinner in both ways.
There is no external dependencies but it relies heavily on the ctypes module.
Some of this code is clean (IMHO) and some parts are just a wreck that works for now. Let’s say that the codebase evolves with my needs and my curiosity.
If you have any issue, question, suggestion do not hesitate to contact me. I am always glad to have feedbacks from people using this project.
Examples are available on the github page and in the Samples of code.
Documentation¶
- 1. The
windowsmodule - 2. The
windowsobjects - 3.
windows.native_exec– Native Code Execution - 4.
windows.winproxy– Windows API - 5.
windows.pipe– Inter-Process Communication - 6.
windows.utils– Windows Utilities - 7.
windows.wintrust– Checking signature - 8.
windows.debug– Debugging - 9.
windows.com- Component Object Model - 10.
windows.crypto– CryptoAPI - 11.
windows.alpc– Advanced Local Procedure Call - 12.
windows.rpc– ALPC-based Windows RPC - 13.
windows.generated_def– generated Windows defines and structures - 14. IAT hooking
- 15. Early Work In Progress
- 16. Internals
- 17. Samples of code