博客
关于我
PyQt5中打开网址方法
阅读量:325 次
发布时间:2019-03-04

本文共 988 字,大约阅读时间需要 3 分钟。

PyQt5中打开网址界面的方法,我总结的目前有四种

第一种

此种方法可以使用浏览器驱动,生成一个工具的窗口打开,而不是在浏览器中打开

对于QtWebEngineWidgets 的问题,详见我的另一个博客

from PyQt5.QtWebEngineWidgets import QWebEngineViewbrowser = QWebEngineView()browser.load(QUrl("https://blog.csdn.net/s_daqing"))browser.show()

第二种

此种方法可以使用电脑默认浏览器打开网址

from PyQt5.QtCore import QUrlfrom PyQt5.QtGui import QDesktopServicesQDesktopServices.openUrl(QUrl("https://blog.csdn.net/s_daqing"))

第三种

可以使用python自带的webbrowser模块打开浏览器

webbrowser.open(url, new=0, autoraise=True) // new-> 0:统一浏览器窗口打开 1:浏览器新窗口打开 2:浏览器窗口新的tab.

webbrowser.open_new(url) ----------新浏览器窗口打开

webbrowser.open_new_tab(url) -------- 浏览器窗口新的tab页打开

import webbrowserurl = 'https://blog.csdn.net/s_daqing'webbrowser.open_new_tab(url)

第四种

比较特殊,就是在PyQt5界面中,使用超链接,和html一样,可以点击超链接打开

label= QLabel(rom_frame)label.setText('超链接标签点击打开查看')label.setGeometry(20, 30, 100, 25)label.setOpenExternalLinks(True)  # 使其成为超链接label.setTextInteractionFlags(Qt.TextBrowserInteraction)  # 双击可选中文本

这样就可以和html一样显示一个超链接,点击后就会通过默认的浏览器打开网址

你可能感兴趣的文章
nnU-Net 终极指南
查看>>
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
No 'Access-Control-Allow-Origin' header is present on the requested resource.
查看>>
NO 157 去掉禅道访问地址中的zentao
查看>>
no available service ‘default‘ found, please make sure registry config corre seata
查看>>
No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK?
查看>>
no connection could be made because the target machine actively refused it.问题解决
查看>>
No Datastore Session bound to thread, and configuration does not allow creation of non-transactional
查看>>
No fallbackFactory instance of type class com.ruoyi---SpringCloud Alibaba_若依微服务框架改造---工作笔记005
查看>>
No Feign Client for loadBalancing defined. Did you forget to include spring-cloud-starter-loadbalanc
查看>>
No mapping found for HTTP request with URI [/...] in DispatcherServlet with name ...的解决方法
查看>>
No mapping found for HTTP request with URI [/logout.do] in DispatcherServlet with name 'springmvc'
查看>>
No module named 'crispy_forms'等使用pycharm开发
查看>>
No module named 'pandads'
查看>>
No module named cv2
查看>>
No module named tensorboard.main在安装tensorboardX的时候遇到的问题
查看>>
No module named ‘MySQLdb‘错误解决No module named ‘MySQLdb‘错误解决
查看>>
No new migrations found. Your system is up-to-date.
查看>>
No qualifying bean of type XXX found for dependency XXX.
查看>>
No qualifying bean of type ‘com.netflix.discovery.AbstractDiscoveryClientOptionalArgs<?>‘ available
查看>>