有没有办法使用Termux for Android中的webbrowser模块?

时间:2019-11-23 14:24:13

标签: python python-3.x termux

我在使用Python中的webbrowser模块打开网站时遇到问题。它返回False作为输出。我是初学者,这是本书“ Automate the Boring Stuff”中的一个示例。这是我的错误图片。 Output from the Termux terminal 有什么办法可以解决这个障碍?

3 个答案:

答案 0 :(得分:1)

据我所知是不可能的。

但是,如果要在Termux上为Android打开链接,则可以使用以下内容:

import os

def OpenLink(link):
    os.system("termux-open-url \""+link+"\"")

还要确保链接以https开头,否则可能会崩溃。

答案 1 :(得分:0)

只需从Play商店下载PYDROID3并使用该模块即可。 这是我尝试过的代码。

导入网络浏览器 webbrowser.open('http://google.co.kr',new = 2)

答案 2 :(得分:0)

注册浏览器可能有效:

import webbrowser
webbrowser.register("termux-open '%s'", None)