Metadata-Version: 2.1
Name: pyperclip3
Version: 0.1.1
Summary: Cross-platform clipboard utilities supporting both binary and text data.
Home-page: https://github.com/spyoungtech/pyperclip3
Author: Spencer Young
Author-email: spencer.young@spyoung.com
License: UNKNOWN
Description: # pyperclip3
        
        Cross-platform clipboard utilities supporting both binary and text data.
        
        
        ## Installation
        
        Requires python 3.7+
        
        ```bash
        pip install pyperclip3
        ```
        
        ## Usage
        
        pyperclip3 can be used in Python code
        ```python
        import pyperclip3
        
        pyperclip3.copy("hello clipboard") # copy data to the clipboard
        cb_data = pyperclip3.paste() # retrieve clipboard contents 
        print(cb_data)
        
        pyperclip3.clear() # clears the clipboard contents
        assert not pyperclip3.paste()
        ```
        
        Or a CLI
        
        ```bash
        # paste clipboard contents to stdout
        python -m pyperclip3 paste
        
        # load contents to the clipboard from stdin
        python -m pyperclip3 copy < myfile.text
        # same as above, but pipe from another command
        some-program | python -m pyperclip3 copy
        ```
        
        ## Status
        
        This library will implement functionality for several platforms and clipboard utilities. 
        
        - [x] MacOS (via `pbcopy`/`pbpaste`)
        - [ ] Windows (coming soon)
        - [ ] Linux (xclip - coming soon)
        - [ ] Linux (xsel - coming soon)
        
        If there is a platform or utility not currently listed, please request it by creating an issue.
Keywords: pyperclip clipboard cross-platform binary bytes files
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
