剪贴板到.txt文件或类似的Python OSX

时间:2018-04-21 12:58:26

标签: python macos clipboard

我正在使用selenium点击浏览器中的按钮,该按钮用于将文本复制到剪贴板。 复制后,我需要能够操作文本,最好是将文本存储为对象,或者通过“粘贴”到.txt文件或类似文件中。

我怎样才能实现这个目标?

1 个答案:

答案 0 :(得分:1)

There are shell commands for accessing the Mac Pasteboard: pbcopy and pbpaste. You can use them in python with os.system or subprocess.

Here's another answer for using shell commands in python.