pyqt打开网页

def viewweb(self):
    text=self.webEdit.text()
    if text.trimmed().isEmpty():
        QMessageBox.information(self,‘Tip‘,u‘文本为空‘)
    else:
        import requests as web1
        if web1.get(‘http://www.baidu.com‘).status_code:
            QMessageBox.information(self,‘Tip‘,u‘亲:如果可以FQ,还是去谷歌搜索吧‘)
            QDesktopServices.openUrl(QUrl(u‘http://www.baidu.com/s?wd={0}&ie=utf-8‘.format(text)))
        else:
            QDesktopServices.openUrl(QUrl(u‘https://www.google.com/?gws_rd=ssl#q={0}‘.format(text)))

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。