Metadata-Version: 2.1
Name: je-auto-control
Version: 0.0.24
Summary: auto control alpha 0.0.20
Home-page: https://github.com/JE-Chen/Python_AutoControl
Author: JE-Chen
Author-email: zenmailman@gmail.com
License: UNKNOWN
Description: # je_auto_control
        
        ## install
        
        ```
        pip install je_auto_control
        ```
        
        ## Info
        
        * Dev env
            * windows 11
            * osx 11 big sur
            * ubuntu 20.0.4
        
        <br>
        
        * Test on
            * windows 11
            * osx 11 big sur
            * ubuntu 20.0.4
        
        <br>
        
        * Notice image detect test path, change it to your image path
        
        ## TODO
        
        * more feature
        
        ## example
        
        * All test and example in test dir
        
        ## how to use
        
        #### keyboard
        
        ```python
        import time
        
        from je_auto_control import type
        from je_auto_control import keys_table
        
        """
        check keys
        """
        print(keys_table.keys())
        
        """
        Linux in every type and press then release need stop 0.01 time in my computer,i'm not sure it's right?
        
        example:
            type("T")
            time.sleep(0.01)
            type("E")
            time.sleep(0.01)
            type("S")
            time.sleep(0.01)
            type("T")
            time.sleep(0.01)
        
        or:
            press_key("T")
            release_key("T")
            time.sleep(0.01)
        """
        
        type("T")
        type("E")
        type("S")
        type("T")
        ```
        
        #### mouse
        
        ```python
        import time
        
        from je_auto_control import position
        from je_auto_control import set_position
        from je_auto_control import press_mouse
        from je_auto_control import release_mouse
        from je_auto_control import click_mouse
        from je_auto_control import mouse_table
        
        time.sleep(1)
        
        print(position())
        set_position(809, 388)
        
        print(mouse_table.keys())
        
        press_mouse("mouse_right")
        release_mouse("mouse_right")
        press_mouse("mouse_left")
        release_mouse("mouse_left")
        click_mouse("mouse_left")
        
        ```
        
        #### scroll
        
        ```python
        from je_auto_control import scroll
        
        scroll(100)
        
        ```
        
        #### screen
        
        ```python
        from je_auto_control import size
        
        print(size())
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Win32 (MS Windows)
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: Chinese (Traditional)
Classifier: Operating System :: Microsoft
Description-Content-Type: text/markdown
