Metadata-Version: 1.1
Name: jaraco.clipboard
Version: 1.1
Summary: jaraco.clipboard
Home-page: https://bitbucket.org/jaraco/jaraco.clipboard
Author: Jason R. Coombs
Author-email: jaraco@jaraco.com
License: UNKNOWN
Description: jaraco.clipboard
        ================
        
        `Documentation <https://pythonhosted.org/jaraco.clipboard>`_
        
        A thin wrapper around platform-specific implementations of clipboard
        functionality.
        
        Similar to `pyperclip <https://pypi.python.org/pypi/pyperclip/>`_
        and `clipboard <https://pypi.python.org/pypi/clipboard/>`_
        and `xerox <https://pypi.python.org/pypi/xerox/>`_ except attempts
        to support more formats than just text.
        
        Usage
        =====
        
        ``jaraco.clipboard`` supplies several functions in the clipboard module.
        The most common are the copy and paste functions::
        
            from jaraco import clipboard
            clipboard.copy('some text')
            clipboard.paste() == 'some text'
        
        Other functions include ``copy/paste`` ``html`` and ``image``.
        
        If not implemented on your platform, the functions will raise
        NotImplementedError.
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
