码迷,mamicode.com
首页 > Web开发 > 详细

pyqt打开网页

时间:2015-02-25 19:51:06      阅读:690      评论:0      收藏:0      [点我收藏+]

标签:

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)))

 

pyqt打开网页

标签:

原文地址:http://www.cnblogs.com/mhxy13867806343/p/4299994.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!