如何使用 python 访问 iphone/ipod 剪贴板?
我想修改为 ipod/iphone 编写的 python 应用程序。 它应该将字符串复制到剪贴板中,以便我可以在另一个应用程序中使用它。 是否可以使用Python访问iPhone剪贴板? 提前致谢。
更新:
感谢您的回复。
一些背景知识:python 程序是一个在我的 ipod 上本地运行的词汇程序。 我经常想查字典中的词汇。 然后我总是必须重复以下步骤:
- 选择并复制该单词。
- 关闭词汇程序。
- 打开字典。
- 将单词粘贴到文本字段中。
- 按搜索。
我想自动化这个过程,因此我希望 python 程序自动将单词复制到剪贴板并启动字典。 我已经使用 URL 方案弄清楚了开头部分。 我希望也能够自动化复制。
I want to modify a python application written for the ipod/iphone.
It should copy a string into the clipboard so that I can use it in another application.
Is it possible to access the iphone clipboard using python?
Thanks in advance.
UPDATE:
Thanks for replying.
A bit of background: The python program is a vocabulary program running locally on my ipod.
Often I want to look up the vocabulary in a dictionary.
Then I always have to repeat the following steps:
- Select and copy the word.
- Close the vocabulary program.
- Open the dictionary.
- Paste the word into the text field.
- Press search.
I want to automate the process, therefore I want the python program to copy the word into the clipboard automatically and start the dictionary.
I figured out the part with the starting already, using URL schemes.
I was hoping to be able to automate the copying as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抱歉,不,既然你提到了 python,我就假设这是一个基于网络的应用程序?如果是这样,您将无法自动将某些内容放入用户的剪贴板或从用户的剪贴板中取出某些内容。但是,如果它是基于网络的,用户将能够选择任何文本/图像并复制以粘贴到其他地方。
Sorry no, I'm assuming since you mention python that this is a web-based application? If so there is no way you can put something into/take something out of the user's clipboard automatically. However if it is webbased the user will be able to select any text/image and copy to paste elsewhere.