当前位置: 首页 > 工具软件 > Pyperclip > 使用案例 >

python第三方库-pyperclip的使用(简单实用)

戚奇略
2023-12-01

模块介绍

1. 可以复制剪贴板内容
2. 可以向剪贴板写入内容

模块安装

安装指令使用
pip install pyperclip

模块使用

import pyperclip
# 将文本复制到剪贴板
pyperclip.copy('哈喽')
# 从剪贴板粘贴文本
pyperclip.paste()

# 剪贴板上有非空字符串时返回字符串
import pyperclip
a = pyperclip.waitForPaste(5)
print(a)

# 剪贴板上有文本被更改时传返回值
pyperclip.copy('original text')
a = pyperclip.waitForNewPaste(5)
print(a)
 类似资料: