2025-12-25 upload

This commit is contained in:
“shengyudong”
2025-12-25 11:16:59 +08:00
commit 322ac74336
2241 changed files with 639966 additions and 0 deletions

View File

@@ -0,0 +1 @@
pip

View File

@@ -0,0 +1,64 @@
Metadata-Version: 2.4
Name: pyperclip
Version: 1.11.0
Summary: A cross-platform clipboard module for Python. (Only handles plain text for now.)
Author-email: Al Sweigart <al@inventwithpython.com>
License: BSD
Project-URL: Homepage, https://github.com/asweigart/pyperclip
Keywords: clipboard,copy,paste,clip,xsel,xclip
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 :: 3
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
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Description-Content-Type: text/markdown
License-File: LICENSE.txt
License-File: AUTHORS.txt
Dynamic: license-file
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 qtpy or PyQT5 modules installed.
Support
-------
If you find this project helpful and would like to support its development, [consider donating to its creator on Patreon](https://www.patreon.com/AlSweigart).

View File

@@ -0,0 +1,11 @@
pyperclip-1.11.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
pyperclip-1.11.0.dist-info/METADATA,sha256=JJODngdRdh8n05qm1cXf0d-DnEXajzKKukrkEChouCU,2445
pyperclip-1.11.0.dist-info/RECORD,,
pyperclip-1.11.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
pyperclip-1.11.0.dist-info/licenses/AUTHORS.txt,sha256=307YZK4ydYFgMPrbPImjtyow3glzMl-PrqVBS92ObOs,2363
pyperclip-1.11.0.dist-info/licenses/LICENSE.txt,sha256=pysKzJOJ5MF87YkO8bA0VeBJeNOeJWNgmbk--3a3Tq0,1487
pyperclip-1.11.0.dist-info/top_level.txt,sha256=leI5OPkUKAOaQl9ATsm3ggu-DA_33DH76xC_nLGPH-I,10
pyperclip/__init__.py,sha256=2w5PpNTOh3hvJcf9Gfqc2TFli7wMGB6X47dOXLo0fMw,23343
pyperclip/__main__.py,sha256=xJgkTDJLfDhgEZOHTGjtry3JneqJTwbyf_PAP9v2KSk,748
pyperclip/__pycache__/__init__.cpython-312.pyc,,
pyperclip/__pycache__/__main__.cpython-312.pyc,,

View File

@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: setuptools (80.9.0)
Root-Is-Purelib: true
Tag: py3-none-any

View File

@@ -0,0 +1,57 @@
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
Corey Bryant https://github.com/coreycb
Daniel Shimon https://github.com/daniel-shimon
Edd Barrett https://github.com/vext01
Eugene Yang https://github.com/eugene-yang
Felix Yan https://github.com/felixonmars
Fredrik Borg https://github.com/frbor
fthoma https://github.com/fthoma
Greg Witt https://github.com/GoodGuyGregory
hinlader https://github.com/hinlader
Hugo van Kemenade 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
masajxxx https://github.com/masajxxx
Maximilian Hils https://github.com/mhils
mgunyho https://github.com/mgunyho
Melwyn Francis Carlo https://github.com/melwyncarlo
Michał Górny https://github.com/mgorny
Nicola Guerrera https://github.com/nik012003
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
PirateOfAndaman https://github.com/PirateOfAndaman
Six https://github.com/brbsix
Stefan Devai https://github.com/stefandevai
Stephen Finucane https://github.com/stephenfin
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
Tim Gates https://github.com/timgates42
Todd Leonhardt https://github.com/tleonhardt
Troy Sankey https://github.com/pwnage101
utagawa kiki https://github.com/utgwkk
Vertliba V.V. https://github.com/vertliba
Vince West https://github.com/dvincentwest
ZEDGR https://github.com/ZEDGR

View File

@@ -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.

View File

@@ -0,0 +1 @@
pyperclip