You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

pyclip-copycat

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pyclip-copycat

easily interact with clipboard from Python fork from pyclip


Maintainers
1

Readme

PyClip-copycat fork from https://github.com/zhemao/pyclip

PyClip wraps the xclip command-line program on Linux and the pbcopy and pbpaste programs on Mac OS X and the clip and paste on Windows to provide an easy python interface to the system clipboard. To install the library, download the code and run sudo python setup.py install. You can then use the library like so

import clipboard

# copy some text to the clipboard
clipboard.copy('blah blah blah')

# get the text currently held in the clipboard
text = clipboard.paste()

# helpful wrapper that passes pasted text through the csv module
# useful for dealing with data copied from spreadsheets
data = clipboard.paste_table()

Note: If you are using this on Linux, make sure you have the xclip program installed.

PyClip is release under an MIT license, reproduced in LICENSE.

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc