Metadata-Version: 1.0
Name: pyperclip
Version: 1.3
Summary: A cross-platform clipboard module for Python. 
Home-page: http://coffeeghost.net/2010/10/09/pyperclip-a-cross-platform-clipboard-module-for-python/
Author: Alexander Cobleigh
Author-email: al@coffeeghost.net
License: LICENSE.txt
Description: 
        I got tired of not having a good cross-platform module for accessing the clipboard in Python, so I put this together. 
        It is a module that loads a copy() and paste() function depending on what your operating system (or window manager) is.
        
        It has the following requirements:
            Windows - No requirements. You dont need the win32 module installed.
            Mac - Requires the pbcopy and pbpaste, which come with OS X.
            Linux - Requires the xclip command, which possibly comes with the os. If not, run sudo apt-get install xclip. Or have the gtk or PyQt4 modules installed.
            Pyperclip runs on both Python 2 and Python 3.
        
        Usage is simple:
            import pyperclip
            pyperclip.copy('The text to be copied to the clipboard.')
            spam = pyperclip.paste()
        
        
        Change Log:
        1.2 Use the platform module to help determine OS.
        1.3 Changed ctypes.windll.user32.OpenClipboard(None) to ctypes.windll.user32.OpenClipboard(0), after some people ran into some TypeError
        
Platform: Windows
Platform: OSX
Platform: Linux
