Metadata-Version: 1.1
Name: PyWinMouse
Version: 1.0
Summary: Python Windows Mouse Utilities
Home-page: UNKNOWN
Author: Gaurav Ghosal
Author-email: gauravrghosal@gmail.com
License: UNKNOWN
Description: 
        This is a simple module allowing python windows developers a simple interface to the User32 mouse control functions!This module exports a Mouse class which provides an object oriented way of controlling the Windows mouse.
        Tutorial::
        
            >>>a=Mouse()#Creates a mouse object
            >>>a.left_click()#Left clicks
            >>>a.right_down()#Presses down the right mouse button
            >>>a.move_mouse(30, 22)#Moves mouse to (30, 22)
            >>>a.get_mouse_pos()
            (30, 22)#If the mouse has not been moved
        
        It is very simple and easy to work with
Keywords: Windows,Mouse,User32
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Desktop Environment
Classifier: Topic :: System
Classifier: Topic :: Utilities
