【发布时间】:2019-11-25 12:45:42
【问题描述】:
我正在尝试构建一个 GUI,以帮助我的团队以信号的形式快速比较大量测试数据。我设想以类似于 Audacity 的格式进行高度模块化的交互式绘图。我正在 PyQt5 中构建 GUI,目前正在尝试决定用于绘图的内容;我正计划使用 matplotlib,但对于预期用途来说它会很笨重。 Plotly 和/或 Dash 似乎更有希望;但是,它们只在浏览器中显示交互式绘图,因此我需要使用嵌入在 GUI 中的某种浏览器显示。因此,QWebEngineView。
我的 GUI 本身将是我开发的 QTabWidget 中选项卡中的图表,而其他选项卡则填充了占位符 matplotlib 图表,我想替换它们,因为它们缺乏简单的交互性。我能够在浏览器中成功显示网页 (google.com)。
在 PyQt5 GUI 中的 QTabWidget 中的 QWebEngineView 对象中成功显示网页
但是,当我将它指向我的 Dash 图的地址时(出于开发目的,我在另一个内核中运行的单独程序中创建了该地址),它给出了错误:此站点无法提供安全连接:
虚线图不显示
On the GUI's Kernel, the error is "[29477:29512:0716/121826.555372:ERROR:ssl_client_socket_impl.cc(1050)] handshake failed; returned -1, SSL error code 1, net_error -107".
In the kernel running the dash plot, the message is:
127.0.0.1 - - [16/Jul/2019 12:18:26] code 400, message Bad request version ('**À+À/À,À0̨̩À\x13À\x14\x00\x9c\x00\x9d\x00/\x005\x00')
127.0.0.1 - - [16/Jul/2019 12:18:26] "µ±ª~ÜÎÌDñB¤¦jËfM½;*÷hå¸GÛ¼i©Tè**À+À/À,À0̨̩ÀÀ/5" HTTPStatus.BAD_REQUEST -
这仅在 QTabsWidget 中。 Dash 图在单独的独立应用程序中显示良好(下面提供了占位符 Dash 图的工作代码)。
虚线图成功显示在一个简单的 PyQt5 GUI 中
我用谷歌搜索了错误,但没有发现任何相关信息。我不明白为什么这在第一个 url 上工作得很好,但是当我将它指向我的 Dash 图时失败了,特别是考虑到我能够在我的精简原型代码中查看 QWebEngineView 中的虚线图。
Dash Plot 工作代码:
import sys
import threading
from PyQt5 import QtWidgets
import dash
import dash_core_components as dcc
import dash_html_components as html
def run_dash(data, layout):
app = dash.Dash()
app.layout = html.Div(children=[
html.H1(children='Hello Dash'),
html.Div(children='''
Dash: A web application framework for Python.
'''),
dcc.Graph(
id='example-graph',
figure={
'data': data,
'layout': layout
})
])
app.run_server(debug=False)
class MainWindow(QtWidgets.QMainWindow):
pass
if __name__ == '__main__':
data = [
{'x': [1, 2, 3], 'y': [4, 1, 2], 'type': 'bar', 'name': 'SF'},
{'x': [1, 2, 3], 'y': [2, 4, 5], 'type': 'bar', 'name': u'Montréal'},
layout = {
'title': 'Dash Data Visualization'
}
threading.Thread(target=run_dash, args=(data, layout), daemon=True).start()
app = QtWidgets.QApplication(sys.argv)
mainWin = MainWindow()
mainWin.show()
sys.exit(app.exec_())
运行此代码后,内核会为绘图提供地址。在我的机器上,它是http://127.0.0.1:8050。
原型 GUI 嵌入代码:
import sys
from PyQt5.QtCore import *
from PyQt5.QtWebEngineWidgets import *
from PyQt5.QtWidgets import QApplication
app = QApplication(sys.argv)
web = QWebEngineView()
#web.load(QUrl("https://www.google.com"))
web.load(QUrl("http://127.0.0.1:8050"))
web.show()
sys.exit(app.exec ())
来自我实际 PyQt5 GUI 的代码片段:
web = QWebEngineView()
# web.load(QUrl("https://www.google.com")) web.load(QUrl("https://127.0.0.1:8050/"))
web.show()
self.ui.TabsContainer.addTab(web, "QWebEngineView Object")
# TabsContainer is a QTabsWidget
如何解决阻止我在 GUI 中嵌入绘图的错误?
编辑:我认为它可能与 QTabWidget 有关,所以我编写了以下简单代码来测试这个想法,并且我的 Dash 图显示正常。但是,它不会显示在我需要它的主多线程 GUI 中,尽管构造方式相同。
import sys
from PyQt5.QtCore import *
from PyQt5.QtWebEngineWidgets import *
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
class CustomMainWindow(QMainWindow): # MainWindow is a subclass of QMainWindow
def __init__(self, *args, **kwargs):
super(CustomMainWindow, self).__init__(*args, **kwargs)
# a = 1
self.setWindowTitle("Window Title")
label = QLabel("Label")
label.setAlignment(Qt.AlignCenter)
#
layout = QVBoxLayout()
# layout.addWidget(Color('red'))
# layout.addWidget(Color('green'))
layout.addWidget(Color('blue'))
TW = QTabWidget()
web1 = QWebEngineView()
web1.load(QUrl("http://www.google.com"))
#web1.load(QUrl("http://127.0.0.1:8050"))
web2 = QWebEngineView()
web2.load(QUrl("http://127.0.0.1:8050"))
TW.addTab(web1, 'web1')
TW.addTab(web2, 'web2')
layout.addWidget(TW)
widget = QWidget()
widget.setLayout(layout)
self.setCentralWidget(widget)
class Color(QWidget):
def __init__(self, color, *args, **kwargs):
super(Color, self).__init__(*args, **kwargs)
self.setAutoFillBackground(True)
palette = self.palette()
palette.setColor(QPalette.Window, QColor(color))
self.setPalette(palette)
app = QApplication(sys.argv)
CMWindow = CustomMainWindow() # Instead of using QMainWindow, we now use our custom window subclassed from QMainWindow
CMWindow.show()
sys.exit(app.exec ())
【问题讨论】:
标签: python pyqt5 plotly-dash sslhandshakeexception qwebengineview