在 5 秒内显示全屏网页然后关闭窗口(python)
Posted
技术标签:
【中文标题】在 5 秒内显示全屏网页然后关闭窗口(python)【英文标题】:Show fullscreen webpage in 5 seconds then close window (python) 【发布时间】:2016-07-20 17:28:37 【问题描述】:我想制作一个 python 脚本,在浏览器中打开一个本地 html 文件并在 5 秒后关闭该窗口。
我试过 self.close() 方法,如果我添加“time.sleep()”它只会延迟网页内容的显示
这是我的代码(我是新手,很抱歉)
import sys
from PyQt4.QtCore import *
from PyQt4.QtGui import *
from PyQt4.QtWebKit import *
import urllib
import time
class Window(QWidget):
def __init__(self, url, dur):
super(Window, self).__init__()
view = QWebView(self)
layout = QVBoxLayout(self)
layout.setContentsMargins(0, 0, 0, 0)
layout.addWidget(view)
html = urllib.urlopen(url).read()
view.setHtml(html)
time.sleep(dur)
self.close()
def main(url, dur):
app = QApplication(sys.argv)
window = Window(url, dur)
window.showFullScreen()
app.exec_()
main('test.html', 5)
有什么建议吗?如您所见,我想在构造函数中同时传递 url 和持续时间(睡眠)。
【问题讨论】:
不要使用time.sleep()
,而是尝试from PyQt4.QtTest import QTest
并使用QTest.qWait(msec)
。这应该让浏览器保持运行,您可以在 5 秒后关闭它。
【参考方案1】:
使用单次计时器(间隔以毫秒为单位):
class Window(QWidget):
def __init__(self, url, dur):
...
view.setHtml(html)
QTimer.singleShot(dur * 1000, self.close)
【讨论】:
做到了!谢谢! :)以上是关于在 5 秒内显示全屏网页然后关闭窗口(python)的主要内容,如果未能解决你的问题,请参考以下文章