mirror of
https://gitee.com/gfdgd-xi/deep-wine-runner
synced 2025-12-13 18:42:03 +08:00
下载量初步
This commit is contained in:
16
Download.py
Normal file
16
Download.py
Normal file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env python3
|
||||
import sys
|
||||
import PyQt5.QtGui as QtGui
|
||||
import PyQt5.QtCore as QtCore
|
||||
import PyQt5.QtWidgets as QtWidgets
|
||||
import PyQt5.QtWebEngineWidgets as QtWebEngineWidgets
|
||||
|
||||
|
||||
|
||||
app = QtWidgets.QApplication(sys.argv)
|
||||
web = QtWebEngineWidgets.QWebEngineView()
|
||||
#web.urlChanged.connect()
|
||||
web.loadFinished.connect(lambda: exit())
|
||||
web.setUrl(QtCore.QUrl("http://120.25.153.144/spark-deepin-wine-runner/open/Install.php?Version=a"))
|
||||
#web.show()
|
||||
app.exec_()
|
||||
Reference in New Issue
Block a user