gpt4 book ai didi

python 和 pyperclip 使用剪贴板的问题

转载 作者:太空宇宙 更新时间:2023-11-03 16:55:42 25 4
gpt4 key购买 nike

所以主要的疑问是,pyperclip 模块是否可以使用 Windows 剪贴板中已有的文本并使用它来打开像 www.test.com/+ 剪贴板中的内容这样的 url?或者只能将信息发送到剪贴板。

或者有一个更简单的方法来实现这一点:使用剪贴板中存储的信息来编写程序。

请查看我的代码:

import pyperclip, webbrowser, time

pyperclip.copy('')
plus = pyperclip.paste()

url = 'http://ww.www.com/' + plus

webbrowser.open_new(url)

谢谢

最佳答案

似乎只有 tkinter 模块才有可能:

必须如下所示:

 import webbrowser

import tkinter as tk

root = tk.Tk()
# keep the window from showing
root.withdraw()

# read the clipboard
x = root.clipboard_get()

url = 'test.com' + x

webbrowser.open_new(url)

关于python 和 pyperclip 使用剪贴板的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35437388/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com