Files
hakril-PythonForWindows/__init__.py
T
2015-09-23 10:29:24 +02:00

27 lines
647 B
Python

"""
Windows for Python
A lot of python object to help navigate windows stuff
Exported:
system : :class:`windows.winobject.System`
current_process : :class:`windows.winobject.CurrentProcess`
current_thread : :class:`windows.winobject.CurrentThread`
"""
import windows.winproxy
from .utils import VirtualProtected
from .winobject import System, CurrentProcess, CurrentThread
system = System()
current_process = CurrentProcess()
current_thread = CurrentThread()
__all__ = ["system", "VirtualProtected", 'current_process', 'current_thread']
# Late import
# Do not move it: risk of circular import
import windows.vectored_exception