@@ -0,0 +1,46 @@
|
||||
Here is an inevitably incomplete list of MUCH-APPRECIATED CONTRIBUTORS --
|
||||
people who have submitted patches, reported bugs, added translations, helped
|
||||
answer newbie questions, and generally made Pyperclip that much better:
|
||||
|
||||
Al Sweigart
|
||||
Alexander Cobleigh @cblgh
|
||||
Andrea Scarpino https://github.com/ilpianista
|
||||
Aniket Pandey https://github.com/lordaniket06
|
||||
Anton Yakutovich https://github.com/drakulavich
|
||||
Brian Levin https://github.com/bnice5000
|
||||
Carvell Scott https://github.com/CarvellScott
|
||||
Cees Timmerman https://github.com/CTimmerman
|
||||
Chris Clark
|
||||
Christopher Lambert https://github.com/XN137
|
||||
Chris Woerz https://github.com/erendrake
|
||||
Edd Barrett https://github.com/vext01
|
||||
Eugene Yang https://github.com/eugene-yang
|
||||
Felix Yan https://github.com/felixonmars
|
||||
fthoma https://github.com/fthoma
|
||||
Greg Witt https://github.com/GoodGuyGregory
|
||||
hinlader https://github.com/hinlader
|
||||
Hugo https://github.com/hugovk
|
||||
Hynek Cernoch https://github.com/hynekcer
|
||||
Jason R. Coombs https://github.com/jaraco
|
||||
Jon Crall https://github.com/Erotemic
|
||||
Jonathan Slenders https://github.com/jonathanslenders
|
||||
JustAShoeMaker https://github.com/JustAShoeMaker
|
||||
Marcelo Glezer https://github.com/gato
|
||||
Maximilian Hils https://github.com/mhils
|
||||
Michał Górny https://github.com/mgorny
|
||||
Nikolaos-Digenis Karagiannis https://github.com/Digenis
|
||||
Nils Ohlmeier https://github.com/nils-ohlmeier
|
||||
Orson Peters https://github.com/orlp
|
||||
pgajdos https://github.com/pgajdos
|
||||
Six https://github.com/brbsix
|
||||
Stefan Devai https://github.com/stefandevai
|
||||
Stefan Scherfke https://github.com/sscherfke
|
||||
Steve Elam
|
||||
Tamir Bahar https://github.com/tmr232
|
||||
Terrel Shumway https://github.com/lernisto
|
||||
Tim Cuthbertson https://github.com/timbertson
|
||||
Todd Leonhardt https://github.com/tleonhardt
|
||||
Troy Sankey https://github.com/pwnage101
|
||||
utagawa kiki https://github.com/utgwkk
|
||||
Vince West https://github.com/dvincentwest
|
||||
ZEDGR https://github.com/ZEDGR
|
@@ -0,0 +1 @@
|
||||
pip
|
@@ -0,0 +1,27 @@
|
||||
Copyright (c) 2014, Al Sweigart
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
* Neither the name of the {organization} nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@@ -0,0 +1,63 @@
|
||||
Metadata-Version: 2.1
|
||||
Name: pyperclip
|
||||
Version: 1.8.2
|
||||
Summary: A cross-platform clipboard module for Python. (Only handles plain text for now.)
|
||||
Home-page: https://github.com/asweigart/pyperclip
|
||||
Author: Al Sweigart
|
||||
Author-email: al@inventwithpython.com
|
||||
License: BSD
|
||||
Keywords: clipboard copy paste clip xsel xclip
|
||||
Platform: UNKNOWN
|
||||
Classifier: Development Status :: 5 - Production/Stable
|
||||
Classifier: Environment :: Win32 (MS Windows)
|
||||
Classifier: Environment :: X11 Applications
|
||||
Classifier: Environment :: MacOS X
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: BSD License
|
||||
Classifier: Operating System :: OS Independent
|
||||
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.1
|
||||
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
|
||||
License-File: LICENSE.txt
|
||||
License-File: AUTHORS.txt
|
||||
|
||||
Pyperclip is a cross-platform Python module for copy and paste clipboard functions. It works with Python 2 and 3.
|
||||
|
||||
Install on Windows: `pip install pyperclip`
|
||||
|
||||
Install on Linux/macOS: `pip3 install pyperclip`
|
||||
|
||||
Al Sweigart al@inventwithpython.com
|
||||
BSD License
|
||||
|
||||
Example Usage
|
||||
=============
|
||||
|
||||
>>> import pyperclip
|
||||
>>> pyperclip.copy('The text to be copied to the clipboard.')
|
||||
>>> pyperclip.paste()
|
||||
'The text to be copied to the clipboard.'
|
||||
|
||||
|
||||
Currently only handles plaintext.
|
||||
|
||||
On Windows, no additional modules are needed.
|
||||
|
||||
On Mac, this module makes use of the pbcopy and pbpaste commands, which should come with the os.
|
||||
|
||||
On Linux, this module makes use of the xclip or xsel commands, which should come with the os. Otherwise run "sudo apt-get install xclip" or "sudo apt-get install xsel" (Note: xsel does not always seem to work.)
|
||||
|
||||
Otherwise on Linux, you will need the gtk or PyQt4 modules installed.
|
||||
|
||||
|
@@ -0,0 +1,11 @@
|
||||
pyperclip-1.8.2.dist-info/AUTHORS.txt,sha256=TcQG60YcFnJw6-7oPv21RDXesk9QP_wfvg4dJ6mXESQ,1925
|
||||
pyperclip-1.8.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
pyperclip-1.8.2.dist-info/LICENSE.txt,sha256=9Xk_TEsoHeHy-Szeso4x5X4tq4As6Wewu9EH7Vu8LjU,1514
|
||||
pyperclip-1.8.2.dist-info/METADATA,sha256=zhB-0W2twQn5aOf7v1YqWK9Dd3HB-A_RoghLSgGSnnk,2311
|
||||
pyperclip-1.8.2.dist-info/RECORD,,
|
||||
pyperclip-1.8.2.dist-info/WHEEL,sha256=ewwEueio1C2XeHTvT17n8dZUJgOvyCWCt0WVNLClP9o,92
|
||||
pyperclip-1.8.2.dist-info/top_level.txt,sha256=leI5OPkUKAOaQl9ATsm3ggu-DA_33DH76xC_nLGPH-I,10
|
||||
pyperclip/__init__.py,sha256=IqvWttZrSEEZB2wqyRRMeoT7eoIdPbNwrMe3v0M-aJs,26043
|
||||
pyperclip/__main__.py,sha256=itIOl_l6GNHXx707JROTiNPcvZiU3xuhAk66dk3xlwY,765
|
||||
pyperclip/__pycache__/__init__.cpython-39.pyc,,
|
||||
pyperclip/__pycache__/__main__.cpython-39.pyc,,
|
@@ -0,0 +1,5 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: bdist_wheel (0.37.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
|
@@ -0,0 +1 @@
|
||||
pyperclip
|
Reference in New Issue
Block a user