Metadata-Version: 1.1
Name: pyperclip-pyside
Version: 1.8.2
Summary: A cross-platform clipboard module for Python without PyQt. (Only handles plain text for now.)
Home-page: https://github.com/jiri-otoupal/pyperclip_pyside
Author: Jiri Otoupal
Author-email: jiri.otoupal@uptim.ai
License: BSD
Description: Pyperclip is a cross-platform Python module for copy and paste clipboard functions. It works with Python 2 and 3.
        
        Install on Windows: `pip install pyperclip_pyside`
        
        Install on Linux/macOS: `pip3 install pyperclip_pyside`
        
        Jiri Otoupal jiri.otoupal@uptim.ai
        
        BSD License
        
        Example Usage
        =============
        
            >>> import pyperclip_pyside as pyperclip
            >>> pyperclip.copy('The text to be copied to the clipboard.')
            >>> pyperclip.paste()
            'The text to be copied to the clipboard.'
        
        
        Currently only handles plaintext.
        
        On Windows, no additional modules are needed.
        
        On Mac, this module makes use of the pbcopy and pbpaste commands, which should come with the os.
        
        On Linux, this module makes use of the xclip or xsel commands, which should come with the os. Otherwise run "sudo apt-get install xclip" or "sudo apt-get install xsel" (Note: xsel does not always seem to work.)
        
        Otherwise on Linux, you will need the gtk or PySide2 modules installed.
        
Keywords: clipboard copy paste clip xsel xclip
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Win32 (MS Windows)
Classifier: Environment :: X11 Applications
Classifier: Environment :: MacOS X
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
