PluginMqttMonitor.py

branch
eric7
changeset 129
9d54bf366323
parent 127
8982ef7b7d67
child 131
899c7cb866a2
equal deleted inserted replaced
128:dea03e2813dc 129:9d54bf366323
5 5
6 """ 6 """
7 Module implementing the MQTT Monitor plug-in. 7 Module implementing the MQTT Monitor plug-in.
8 """ 8 """
9 9
10 import json
10 import os 11 import os
11 import json 12
12 13 from PyQt6.QtCore import QCoreApplication, QObject, Qt, QTranslator
13 from PyQt6.QtCore import Qt, QObject, QTranslator, QCoreApplication
14 from PyQt6.QtGui import QKeySequence 14 from PyQt6.QtGui import QKeySequence
15 15
16 from eric7 import Preferences 16 from eric7 import Preferences
17 from eric7.EricGui.EricAction import EricAction 17 from eric7.EricGui.EricAction import EricAction
18 from eric7.EricWidgets.EricApplication import ericApp 18 from eric7.EricWidgets.EricApplication import ericApp
27 # Start-Of-Header 27 # Start-Of-Header
28 name = "MQTT Monitor Plugin" 28 name = "MQTT Monitor Plugin"
29 author = "Detlev Offenbach <detlev@die-offenbachs.de>" 29 author = "Detlev Offenbach <detlev@die-offenbachs.de>"
30 autoactivate = True 30 autoactivate = True
31 deactivateable = True 31 deactivateable = True
32 version = "10.3.0" 32 version = "10.4.0"
33 className = "MqttMonitorPlugin" 33 className = "MqttMonitorPlugin"
34 packageName = "MqttMonitor" 34 packageName = "MqttMonitor"
35 shortDescription = "Plug-in implementing a tool to connect to a MQTT broker" 35 shortDescription = "Plug-in implementing a tool to connect to a MQTT broker"
36 longDescription = ( 36 longDescription = (
37 """Plug-in implementing a tool to connect to a MQTT broker, subscribe""" 37 """Plug-in implementing a tool to connect to a MQTT broker, subscribe"""

eric ide

mercurial