我需要在python代码中使用特定的网站(将英语翻译成我的语言),并且我也不想在python中使用googletrans,因为它的数据量很大,所以我需要使用python来快速完成操作,是否有我无法阅读的参考文献或标题?或python中的任何文档? 谢谢
答案 0 :(得分:2)
您可能要考虑使用Selenium或BeautifulSoup与网站或网页抓取进行交互,但是如果您只想打开网站,则可以使用webbrowser模块。
import webbrowser
Google = 'https://www.google.com/?safe=active&safe=active'
webbrowser.open(Google)
这里有一些硒和BeautifulSoup的链接
https://pythonspot.com/selenium-webdriver/
https://realpython.com/beautiful-soup-web-scraper-python/
希望这会有所帮助。