Metadata-Version: 1.1
Name: copypaste
Version: 0.2
Summary: Platform independent copy + paste library for Python
Home-page: http://gr1n.github.io/copypaste/
Author: Nikita Grishko
Author-email: grin.minsk@gmail.com
License: MIT
Description: copypaste
        =========
        
        Platform independent copy + paste library for Python
        This library is easier and more powerful than `xerox <https://github.com/kennethreitz/xerox>`_, I think :).
        
        Supported:
        
        * OS X (pbcopy + pbpaste)
        * Linux (required `xclip <http://sourceforge.net/projects/xclip/>`_)
        * Windows (required `pywin32 <http://sourceforge.net/projects/pywin32/>`_ or `IronPython <http://ironpython.codeplex.com>`_)
        
        Install
        -------
        
        ::
        
            pip install copypaste
        
        
        Usage
        -----
        
        ::
        
            >>> from copypaste import copy, paste
            >>>
            >>> copy('I\'m here to make web a better place!!')
            >>> paste()
            "I'm here to make web a better place!!"
            >>>
            >>> # Only for UNIX like systems you can specify your own command for copy and paste
            >>> copy('I\'m here to make web a better place!!', cmd=['xsel', '-pi'])
            >>> paste(cmd=['xsel', '-o'])
            "I'm here to make web a better place!!"
            >>>
        
        
        Command line usage
        ------------------
        
        ::
        
            % copy "I'm here to make web a better place!!"
            % paste
            I'm here to make web a better place!!
            %
            % echo I\'m here to make web a better place!! | copy
            % paste
            I'm here to make web a better place!!
            %
        
        
        License
        -------
        
        *copypaste* is licensed under the MIT license. See the license file for details.
        
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
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.3
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: IronPython
