Metadata-Version: 2.1
Name: distancecontrol
Version: 0.0.1
Summary: A library used to control programs(mainly games) without focusing them.
Home-page: http://flafy.herokuapp.com/
Author: Flafy Arazi
Author-email: flafyarazi@gmail.com
License: MIT
Description: A library used to control programs(mainly games) without focusing them.  
        This isn't guaranteed to work and will sometimes require to be very creative with how you perform actions.  
        Example:
        ```
        hwnd = Windows_by_title('GamesTitle', strict=True)[0]
        
        # Open up menu(It doesn't close it)
        KeyPress_Down(hwnd, VK_ESCAPE)
        KeyPress_Up(hwnd, VK_ESCAPE)
        
        # Press the right key
        KeyPress_Down(hwnd, VK_RIGHT)
        KeyPress_StopAll(hwnd) # KeyPress_Up() won't work. Why? I don't know, for every program it's different.
        ```
        
        Module's functions are easy to understand.
        
        Changelog
        =========
        
        DistanceControl 0.0.1:
            Initial release.
        
Keywords: control send keys game program without focus active top topmost SendMessage PostMessage
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
