Metadata-Version: 1.1
Name: guippy
Version: 0.1.4dev
Summary: Control the Windows GUI
Home-page: https://bitbucket.org/takesxi_sximada/guippy
Author: TakesxiSximada
Author-email: takesxi.sximada@gmail.com
License: GPLv3
Description: Graphical User Interfaces Procedures for PYthon.
        =======================================================
        
        The guippy emulate various operations of computer users. It provides the
        ability for emulate keyboards, mouses, window system, and clipboards. By using
        this, you can run your computer automatically.
        
        This is a Pyhon 3rd party library. Written in pure Python. You need to Python
        programming, but it is very easy to use. And you can easily and safely install.
        
        INSTALL
        --------------------
        
        ::
        
            pip install guippy
        
        
        HOW TO USE IT
        --------------------
        
        For example...
        
        Start::
        
           >>> import guippy
           >>> gp = guippy.Guippy()
        
        Catch current active window::
        
           >>> gp.catch()
        
        Move the window to  (x=1, y=2)::
        
            >>> gp.move(1, 2)
        
        Move the mouse pointer to  (x=1, y=2)::
        
           >>> gp.jump(1, 2)
        
        Move the mouse pointer to relative position from the upper-left of the window::
        
           >>> gp.chase(2, 3)
        
        Click and double click::
        
           >>> gp.click()  # click
           >>> gp.wclick() # double click
        
        Type "test"::
        
           >>> gp.punch('test')
        
        Input Ctrl-c::
        
           >>> gp.ctrl('c')
        
        Set data in to clipboard::
        
           >>> gp.set('test')
        
        Get data from clipboard::
        
           >>> gp.get()
           u'test'
        
        Close the window::
        
            >>> gp.close()
        
        See the documentation if you want to know other things.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: System Administrators
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: Microsoft :: Windows
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Office/Business
