访问剪贴板 Windows (7) 64 位

发布于 2024-10-10 02:47:44 字数 79 浏览 3 评论 0原文

有没有办法在 Python 中访问(设置、读取等)Windows 7 64 位上的剪贴板?我见过 PyWin32,但据我所知,它只是 32 位。

Is there a way to access (set, read etc.) the clipboard on Windows 7 64-bit in Python? I have seen PyWin32 but as far as I could see that was only 32-bit.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

哎呦我呸! 2024-10-17 02:47:44

下载 amd64 版本的 pywin32 以获得 64 位支持,查看 此处

Download the amd64 version of pywin32 for 64bit support, have a look at here.

清晰传感 2024-10-17 02:47:44

所有程序之间只共享一个剪贴板,无论它们是 32 位还是 64 位。换句话说,您可以在 64 位 Windows 上使用与 32 位 Windows 上相同的剪贴板代码。

编辑:我刚刚读过伊斯梅尔的回答,我想知道这是否真的是OP正在努力解决的问题。我上面的陈述仍然正确,但我可能误解了这个问题。

There only is one clipboard that is shared between all programs, whether they are 32 or 64 bit. In other words you can just use the same clipboard code on 64 bit Windows as you do on 32 bit.

EDIT: I've just read İsmail's answer and I wonder if that is in fact what the OP is struggling with. My statement above is still true, but I may have misinterpreted the question.

桃酥萝莉 2024-10-17 02:47:44

pyperclip.py 模块具有对简单文本复制/粘贴的跨平台支持。

http://coffeeghost.net/ 2010/10/09/pyperclip-a-cross-platform-clipboard-module-for-python/

The pyperclip.py module has cross-platform support for simple text copying/pasting.

http://coffeeghost.net/2010/10/09/pyperclip-a-cross-platform-clipboard-module-for-python/

秋意浓 2024-10-17 02:47:44

我见过的最简单的方法在这篇文章中演示: 如何使用 Python 将字符串复制到 Windows 上的剪贴板?

它使用 Tkinter,它位于 python 标准库中。

The easiest method I've seen is demonstrated in this post: How do I copy a string to the clipboard on Windows using Python?

It uses Tkinter, which is in the python standard library.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文