Metadata-Version: 2.1
Name: jupyter2clipboard
Version: 0.2.0
Summary: A simple utility to copy jupyter cell output to your local clipboard from a hosted instance of jupyter.
Home-page: https://github.com/PaleNeutron/jupyter2clipboard
Author: paleneutron
Author-email: paleneutron@outlook.com
License: MIT
Keywords: CACHE
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
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.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
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
Requires-Dist: ipython

# jupyter2clipboard

A simple utility to copy jupyter cell output to your local clipboard from a hosted instance of jupyter.

### Installation
```sh
pip install jupyter2clipboard
```

### Usage
```py
from jupyter2clipboard import to_clipboard

content = "any string content"
to_clipboard( content )
```

License
----

MIT


