在PyQt5 GUI中嵌入Plotly-Dash图:握手失败,SSL错误

时间:2019-07-16 18:01:18

标签: python pyqt5 plotly-dash sslhandshakeexception qwebengineview

我正在尝试构建一个GUI,以帮助我的团队快速比较信号形式的大量测试数据。我设想了高度模块化的交互式地块,其格式类似于Audacity。我正在PyQt5中构建GUI,目前正在尝试确定要用于绘图的内容。我当时计划使用matplotlib,但对于预期的用途而言,它会很笨重。阴谋和/或达世币似乎更有希望;但是,它们仅在浏览器中显示交互式图,因此我需要使用GUI中嵌入的某种浏览器显示。因此,QWebEngineView。

我的GUI本身将在我开发的QTabWidget的选项卡中容纳绘图,而其他选项卡中则填充了占位符matplotlib绘图,我想替换它们,因为它们缺乏便捷的交互性。我能够在浏览器中成功显示网页(google.com)。

在PyQt5 GUI的QTabWidget的QWebEngineView对象中成功显示网页

enter image description here

但是,当我将其指向Dash图的地址(出于开发目的,我在另一个内核中运行的单独程序中创建该地址)时,出现错误:该站点无法提供安全的连接:

仪表板图不显示

enter image description here

 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中

enter image description here

我搜索了错误,但没有发现任何相关信息。我不明白为什么这对于第一个URL可以正常工作,但是当我将其指向Dash图时却失败了,特别是考虑到我能够在简化的原型代码中的QWebEngineView中查看虚线图。

仪表板工作代码:

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

1 个答案:

答案 0 :(得分:0)

好吧,答案很简单:

在我发布的工作示例中,我加载了QUrl(“ http://127.0.0.1:8050”)。在无效的代码中,我使用了https://。显然Dash图不使用https。我只花了2天的时间仔细研究我的代码,并向其中抛出一堆东西就可以弄清楚它...