diff --git a/.project b/.project
new file mode 100644
index 0000000..a219049
--- /dev/null
+++ b/.project
@@ -0,0 +1,17 @@
+
+
+ MarkoprintWIFI
+
+
+
+
+
+ org.python.pydev.PyDevBuilder
+
+
+
+
+
+ org.python.pydev.pythonNature
+
+
diff --git a/.pydevproject b/.pydevproject
new file mode 100644
index 0000000..ad74947
--- /dev/null
+++ b/.pydevproject
@@ -0,0 +1,8 @@
+
+
+
+/${PROJECT_DIR_NAME}
+
+python interpreter
+Default
+
diff --git a/MkpWIFI/MKPrint_GUI.py b/MkpWIFI/MKPrint_GUI.py
new file mode 100644
index 0000000..0735ced
--- /dev/null
+++ b/MkpWIFI/MKPrint_GUI.py
@@ -0,0 +1,229 @@
+# -*- coding: utf-8 -*-
+
+# Form implementation generated from reading ui file 'mkpwifi_ui.ui'
+#
+# Created by: PyQt5 UI code generator 5.12.1
+#
+# WARNING! All changes made in this file will be lost!
+
+from PyQt5 import QtCore, QtGui, QtWidgets
+
+
+class Ui_MainWindow(object):
+ def setupUi(self, MainWindow):
+ MainWindow.setObjectName("MainWindow")
+ MainWindow.resize(700, 360)
+ sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Fixed, QtWidgets.QSizePolicy.Fixed)
+ sizePolicy.setHorizontalStretch(0)
+ sizePolicy.setVerticalStretch(0)
+ sizePolicy.setHeightForWidth(MainWindow.sizePolicy().hasHeightForWidth())
+ MainWindow.setSizePolicy(sizePolicy)
+ MainWindow.setMaximumSize(QtCore.QSize(700, 360))
+ MainWindow.setTabShape(QtWidgets.QTabWidget.Rounded)
+ self.centralwidget = QtWidgets.QWidget(MainWindow)
+ self.centralwidget.setObjectName("centralwidget")
+ self.verticalLayout = QtWidgets.QVBoxLayout(self.centralwidget)
+ self.verticalLayout.setObjectName("verticalLayout")
+ self.gridLayout = QtWidgets.QGridLayout()
+ self.gridLayout.setObjectName("gridLayout")
+ self.horizontalLayout_2 = QtWidgets.QHBoxLayout()
+ self.horizontalLayout_2.setObjectName("horizontalLayout_2")
+ self.label = QtWidgets.QLabel(self.centralwidget)
+ sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.MinimumExpanding, QtWidgets.QSizePolicy.Preferred)
+ sizePolicy.setHorizontalStretch(0)
+ sizePolicy.setVerticalStretch(0)
+ sizePolicy.setHeightForWidth(self.label.sizePolicy().hasHeightForWidth())
+ self.label.setSizePolicy(sizePolicy)
+ self.label.setMinimumSize(QtCore.QSize(125, 0))
+ font = QtGui.QFont()
+ font.setPointSize(14)
+ self.label.setFont(font)
+ self.label.setObjectName("label")
+ self.horizontalLayout_2.addWidget(self.label)
+ self.txt_model = QtWidgets.QLineEdit(self.centralwidget)
+ sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Fixed)
+ sizePolicy.setHorizontalStretch(0)
+ sizePolicy.setVerticalStretch(0)
+ sizePolicy.setHeightForWidth(self.txt_model.sizePolicy().hasHeightForWidth())
+ self.txt_model.setSizePolicy(sizePolicy)
+ self.txt_model.setMinimumSize(QtCore.QSize(200, 0))
+ font = QtGui.QFont()
+ font.setPointSize(14)
+ self.txt_model.setFont(font)
+ self.txt_model.setMaxLength(8)
+ self.txt_model.setObjectName("txt_model")
+ self.horizontalLayout_2.addWidget(self.txt_model)
+ spacerItem = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
+ self.horizontalLayout_2.addItem(spacerItem)
+ self.horizontalLayout = QtWidgets.QHBoxLayout()
+ self.horizontalLayout.setObjectName("horizontalLayout")
+ self.label_2 = QtWidgets.QLabel(self.centralwidget)
+ self.label_2.setMinimumSize(QtCore.QSize(70, 0))
+ font = QtGui.QFont()
+ font.setPointSize(14)
+ self.label_2.setFont(font)
+ self.label_2.setObjectName("label_2")
+ self.horizontalLayout.addWidget(self.label_2)
+ self.rad_dataOn = QtWidgets.QRadioButton(self.centralwidget)
+ self.rad_dataOn.setMinimumSize(QtCore.QSize(0, 0))
+ font = QtGui.QFont()
+ font.setPointSize(14)
+ self.rad_dataOn.setFont(font)
+ self.rad_dataOn.setObjectName("rad_dataOn")
+ self.horizontalLayout.addWidget(self.rad_dataOn)
+ self.rad_dataOff = QtWidgets.QRadioButton(self.centralwidget)
+ font = QtGui.QFont()
+ font.setPointSize(14)
+ self.rad_dataOff.setFont(font)
+ self.rad_dataOff.setObjectName("rad_dataOff")
+ self.horizontalLayout.addWidget(self.rad_dataOff)
+ self.horizontalLayout_2.addLayout(self.horizontalLayout)
+ spacerItem1 = QtWidgets.QSpacerItem(40, 20, QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Minimum)
+ self.horizontalLayout_2.addItem(spacerItem1)
+ self.gridLayout.addLayout(self.horizontalLayout_2, 0, 0, 1, 4)
+ self.lbl_stat = QtWidgets.QLabel(self.centralwidget)
+ font = QtGui.QFont()
+ font.setPointSize(16)
+ self.lbl_stat.setFont(font)
+ self.lbl_stat.setAlignment(QtCore.Qt.AlignCenter)
+ self.lbl_stat.setObjectName("lbl_stat")
+ self.gridLayout.addWidget(self.lbl_stat, 4, 0, 1, 2)
+ self.lcd_printCount = QtWidgets.QLCDNumber(self.centralwidget)
+ font = QtGui.QFont()
+ font.setPointSize(12)
+ self.lcd_printCount.setFont(font)
+ self.lcd_printCount.setFrameShape(QtWidgets.QFrame.NoFrame)
+ self.lcd_printCount.setFrameShadow(QtWidgets.QFrame.Plain)
+ self.lcd_printCount.setSmallDecimalPoint(True)
+ self.lcd_printCount.setDigitCount(4)
+ self.lcd_printCount.setProperty("intValue", 0)
+ self.lcd_printCount.setObjectName("lcd_printCount")
+ self.gridLayout.addWidget(self.lcd_printCount, 4, 2, 1, 1)
+ self.prg_inkLevel = QtWidgets.QProgressBar(self.centralwidget)
+ self.prg_inkLevel.setMinimumSize(QtCore.QSize(25, 0))
+ font = QtGui.QFont()
+ font.setPointSize(12)
+ font.setKerning(True)
+ self.prg_inkLevel.setFont(font)
+ self.prg_inkLevel.setProperty("value", 10)
+ self.prg_inkLevel.setTextVisible(True)
+ self.prg_inkLevel.setOrientation(QtCore.Qt.Horizontal)
+ self.prg_inkLevel.setInvertedAppearance(False)
+ self.prg_inkLevel.setObjectName("prg_inkLevel")
+ self.gridLayout.addWidget(self.prg_inkLevel, 3, 0, 1, 3)
+ self.btn_upload = QtWidgets.QPushButton(self.centralwidget)
+ self.btn_upload.setMinimumSize(QtCore.QSize(0, 50))
+ font = QtGui.QFont()
+ font.setPointSize(14)
+ self.btn_upload.setFont(font)
+ self.btn_upload.setObjectName("btn_upload")
+ self.gridLayout.addWidget(self.btn_upload, 6, 3, 1, 1)
+ self.line_2 = QtWidgets.QFrame(self.centralwidget)
+ self.line_2.setFrameShape(QtWidgets.QFrame.HLine)
+ self.line_2.setFrameShadow(QtWidgets.QFrame.Sunken)
+ self.line_2.setObjectName("line_2")
+ self.gridLayout.addWidget(self.line_2, 2, 0, 1, 4)
+ self.btn_connect = QtWidgets.QPushButton(self.centralwidget)
+ self.btn_connect.setMinimumSize(QtCore.QSize(0, 50))
+ font = QtGui.QFont()
+ font.setPointSize(14)
+ self.btn_connect.setFont(font)
+ self.btn_connect.setObjectName("btn_connect")
+ self.gridLayout.addWidget(self.btn_connect, 6, 0, 1, 1)
+ self.label_4 = QtWidgets.QLabel(self.centralwidget)
+ self.label_4.setMaximumSize(QtCore.QSize(16777215, 180))
+ font = QtGui.QFont()
+ font.setPointSize(14)
+ self.label_4.setFont(font)
+ self.label_4.setObjectName("label_4")
+ self.gridLayout.addWidget(self.label_4, 3, 3, 1, 1)
+ self.line = QtWidgets.QFrame(self.centralwidget)
+ self.line.setFrameShape(QtWidgets.QFrame.HLine)
+ self.line.setFrameShadow(QtWidgets.QFrame.Sunken)
+ self.line.setObjectName("line")
+ self.gridLayout.addWidget(self.line, 5, 0, 1, 4)
+ self.label_5 = QtWidgets.QLabel(self.centralwidget)
+ self.label_5.setMaximumSize(QtCore.QSize(16777215, 180))
+ font = QtGui.QFont()
+ font.setPointSize(14)
+ self.label_5.setFont(font)
+ self.label_5.setObjectName("label_5")
+ self.gridLayout.addWidget(self.label_5, 4, 3, 1, 1)
+ self.horizontalLayout_3 = QtWidgets.QHBoxLayout()
+ self.horizontalLayout_3.setObjectName("horizontalLayout_3")
+ self.label_3 = QtWidgets.QLabel(self.centralwidget)
+ sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.MinimumExpanding, QtWidgets.QSizePolicy.Maximum)
+ sizePolicy.setHorizontalStretch(0)
+ sizePolicy.setVerticalStretch(0)
+ sizePolicy.setHeightForWidth(self.label_3.sizePolicy().hasHeightForWidth())
+ self.label_3.setSizePolicy(sizePolicy)
+ self.label_3.setMinimumSize(QtCore.QSize(125, 0))
+ self.label_3.setMaximumSize(QtCore.QSize(125, 150))
+ font = QtGui.QFont()
+ font.setPointSize(14)
+ self.label_3.setFont(font)
+ self.label_3.setObjectName("label_3")
+ self.horizontalLayout_3.addWidget(self.label_3)
+ self.txt_descr = QtWidgets.QPlainTextEdit(self.centralwidget)
+ sizePolicy = QtWidgets.QSizePolicy(QtWidgets.QSizePolicy.Expanding, QtWidgets.QSizePolicy.Maximum)
+ sizePolicy.setHorizontalStretch(0)
+ sizePolicy.setVerticalStretch(0)
+ sizePolicy.setHeightForWidth(self.txt_descr.sizePolicy().hasHeightForWidth())
+ self.txt_descr.setSizePolicy(sizePolicy)
+ self.txt_descr.setMaximumSize(QtCore.QSize(16777215, 150))
+ font = QtGui.QFont()
+ font.setPointSize(14)
+ self.txt_descr.setFont(font)
+ self.txt_descr.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
+ self.txt_descr.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
+ self.txt_descr.setSizeAdjustPolicy(QtWidgets.QAbstractScrollArea.AdjustToContents)
+ self.txt_descr.setBackgroundVisible(False)
+ self.txt_descr.setObjectName("txt_descr")
+ self.horizontalLayout_3.addWidget(self.txt_descr)
+ self.gridLayout.addLayout(self.horizontalLayout_3, 1, 0, 1, 4)
+ self.verticalLayout.addLayout(self.gridLayout)
+ MainWindow.setCentralWidget(self.centralwidget)
+ self.menubar = QtWidgets.QMenuBar(MainWindow)
+ self.menubar.setGeometry(QtCore.QRect(0, 0, 700, 21))
+ self.menubar.setObjectName("menubar")
+ self.menuFile = QtWidgets.QMenu(self.menubar)
+ self.menuFile.setObjectName("menuFile")
+ MainWindow.setMenuBar(self.menubar)
+ self.statusbar = QtWidgets.QStatusBar(MainWindow)
+ self.statusbar.setObjectName("statusbar")
+ MainWindow.setStatusBar(self.statusbar)
+ self.act_save = QtWidgets.QAction(MainWindow)
+ self.act_save.setObjectName("act_save")
+ self.act_load = QtWidgets.QAction(MainWindow)
+ self.act_load.setObjectName("act_load")
+ self.menuFile.addAction(self.act_save)
+ self.menuFile.addAction(self.act_load)
+ self.menubar.addAction(self.menuFile.menuAction())
+
+ self.retranslateUi(MainWindow)
+ QtCore.QMetaObject.connectSlotsByName(MainWindow)
+ MainWindow.setTabOrder(self.btn_connect, self.txt_model)
+ MainWindow.setTabOrder(self.txt_model, self.rad_dataOn)
+ MainWindow.setTabOrder(self.rad_dataOn, self.txt_descr)
+ MainWindow.setTabOrder(self.txt_descr, self.btn_upload)
+ MainWindow.setTabOrder(self.btn_upload, self.rad_dataOff)
+
+ def retranslateUi(self, MainWindow):
+ _translate = QtCore.QCoreApplication.translate
+ MainWindow.setWindowTitle(_translate("MainWindow", "MainWindow"))
+ self.label.setText(_translate("MainWindow", "MODELLO"))
+ self.label_2.setText(_translate("MainWindow", "DATA"))
+ self.rad_dataOn.setText(_translate("MainWindow", "SI"))
+ self.rad_dataOff.setText(_translate("MainWindow", "NO"))
+ self.lbl_stat.setText(_translate("MainWindow", "-"))
+ self.prg_inkLevel.setFormat(_translate("MainWindow", "%p%"))
+ self.btn_upload.setText(_translate("MainWindow", "CARICA"))
+ self.btn_connect.setText(_translate("MainWindow", "CONNETTI"))
+ self.label_4.setText(_translate("MainWindow", "Livello Inchiostro"))
+ self.label_5.setText(_translate("MainWindow", "N° Stampe Etichetta"))
+ self.label_3.setText(_translate("MainWindow", "DESCRIZIONE"))
+ self.menuFile.setTitle(_translate("MainWindow", "File "))
+ self.act_save.setText(_translate("MainWindow", "Salva"))
+ self.act_load.setText(_translate("MainWindow", "Carica"))
+
+
diff --git a/MkpWIFI/__init__.py b/MkpWIFI/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/MkpWIFI/__pycache__/MKPrint_GUI.cpython-37.pyc b/MkpWIFI/__pycache__/MKPrint_GUI.cpython-37.pyc
new file mode 100644
index 0000000..588d4ae
Binary files /dev/null and b/MkpWIFI/__pycache__/MKPrint_GUI.cpython-37.pyc differ
diff --git a/MkpWIFI/__pycache__/__init__.cpython-37.pyc b/MkpWIFI/__pycache__/__init__.cpython-37.pyc
new file mode 100644
index 0000000..4ede704
Binary files /dev/null and b/MkpWIFI/__pycache__/__init__.cpython-37.pyc differ
diff --git a/MkpWIFI/__pycache__/main.cpython-37.pyc b/MkpWIFI/__pycache__/main.cpython-37.pyc
new file mode 100644
index 0000000..32867e2
Binary files /dev/null and b/MkpWIFI/__pycache__/main.cpython-37.pyc differ
diff --git a/MkpWIFI/build/main/Analysis-00.toc b/MkpWIFI/build/main/Analysis-00.toc
new file mode 100644
index 0000000..178bb62
--- /dev/null
+++ b/MkpWIFI/build/main/Analysis-00.toc
@@ -0,0 +1,683 @@
+(['C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\main.py'],
+ ['C:\\Users\\Emanuele Trabattoni\\Documents\\workspace\\MarkoprintWIFI',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI'],
+ ['codecs'],
+ [],
+ [],
+ [],
+ False,
+ False,
+ '3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 23:09:28) [MSC v.1916 64 bit '
+ '(AMD64)]',
+ [('pyi_rth_qt5',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\loader\\rthooks\\pyi_rth_qt5.py',
+ 'PYSOURCE'),
+ ('main',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\main.py',
+ 'PYSOURCE')],
+ [('ntpath', 'c:\\program files\\python37\\lib\\ntpath.py', 'PYMODULE'),
+ ('_strptime', 'c:\\program files\\python37\\lib\\_strptime.py', 'PYMODULE'),
+ ('tracemalloc',
+ 'c:\\program files\\python37\\lib\\tracemalloc.py',
+ 'PYMODULE'),
+ ('stringprep', 'c:\\program files\\python37\\lib\\stringprep.py', 'PYMODULE'),
+ ('typing', 'c:\\program files\\python37\\lib\\typing.py', 'PYMODULE'),
+ ('__future__', 'c:\\program files\\python37\\lib\\__future__.py', 'PYMODULE'),
+ ('difflib', 'c:\\program files\\python37\\lib\\difflib.py', 'PYMODULE'),
+ ('ast', 'c:\\program files\\python37\\lib\\ast.py', 'PYMODULE'),
+ ('inspect', 'c:\\program files\\python37\\lib\\inspect.py', 'PYMODULE'),
+ ('cmd', 'c:\\program files\\python37\\lib\\cmd.py', 'PYMODULE'),
+ ('bdb', 'c:\\program files\\python37\\lib\\bdb.py', 'PYMODULE'),
+ ('opcode', 'c:\\program files\\python37\\lib\\opcode.py', 'PYMODULE'),
+ ('dis', 'c:\\program files\\python37\\lib\\dis.py', 'PYMODULE'),
+ ('codeop', 'c:\\program files\\python37\\lib\\codeop.py', 'PYMODULE'),
+ ('code', 'c:\\program files\\python37\\lib\\code.py', 'PYMODULE'),
+ ('glob', 'c:\\program files\\python37\\lib\\glob.py', 'PYMODULE'),
+ ('shlex', 'c:\\program files\\python37\\lib\\shlex.py', 'PYMODULE'),
+ ('runpy', 'c:\\program files\\python37\\lib\\runpy.py', 'PYMODULE'),
+ ('importlib._bootstrap',
+ 'c:\\program files\\python37\\lib\\importlib\\_bootstrap.py',
+ 'PYMODULE'),
+ ('importlib._bootstrap_external',
+ 'c:\\program files\\python37\\lib\\importlib\\_bootstrap_external.py',
+ 'PYMODULE'),
+ ('importlib.machinery',
+ 'c:\\program files\\python37\\lib\\importlib\\machinery.py',
+ 'PYMODULE'),
+ ('importlib.util',
+ 'c:\\program files\\python37\\lib\\importlib\\util.py',
+ 'PYMODULE'),
+ ('importlib.abc',
+ 'c:\\program files\\python37\\lib\\importlib\\abc.py',
+ 'PYMODULE'),
+ ('importlib',
+ 'c:\\program files\\python37\\lib\\importlib\\__init__.py',
+ 'PYMODULE'),
+ ('pkgutil', 'c:\\program files\\python37\\lib\\pkgutil.py', 'PYMODULE'),
+ ('xml', 'c:\\program files\\python37\\lib\\xml\\__init__.py', 'PYMODULE'),
+ ('xml.sax.expatreader',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\expatreader.py',
+ 'PYMODULE'),
+ ('xml.sax.saxutils',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\saxutils.py',
+ 'PYMODULE'),
+ ('urllib.request',
+ 'c:\\program files\\python37\\lib\\urllib\\request.py',
+ 'PYMODULE'),
+ ('getpass', 'c:\\program files\\python37\\lib\\getpass.py', 'PYMODULE'),
+ ('nturl2path', 'c:\\program files\\python37\\lib\\nturl2path.py', 'PYMODULE'),
+ ('ftplib', 'c:\\program files\\python37\\lib\\ftplib.py', 'PYMODULE'),
+ ('netrc', 'c:\\program files\\python37\\lib\\netrc.py', 'PYMODULE'),
+ ('http.cookiejar',
+ 'c:\\program files\\python37\\lib\\http\\cookiejar.py',
+ 'PYMODULE'),
+ ('urllib.response',
+ 'c:\\program files\\python37\\lib\\urllib\\response.py',
+ 'PYMODULE'),
+ ('urllib.error',
+ 'c:\\program files\\python37\\lib\\urllib\\error.py',
+ 'PYMODULE'),
+ ('xml.sax',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\__init__.py',
+ 'PYMODULE'),
+ ('xml.sax.handler',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\handler.py',
+ 'PYMODULE'),
+ ('xml.sax._exceptions',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\_exceptions.py',
+ 'PYMODULE'),
+ ('xml.sax.xmlreader',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\xmlreader.py',
+ 'PYMODULE'),
+ ('xml.parsers',
+ 'c:\\program files\\python37\\lib\\xml\\parsers\\__init__.py',
+ 'PYMODULE'),
+ ('xml.parsers.expat',
+ 'c:\\program files\\python37\\lib\\xml\\parsers\\expat.py',
+ 'PYMODULE'),
+ ('plistlib', 'c:\\program files\\python37\\lib\\plistlib.py', 'PYMODULE'),
+ ('platform', 'c:\\program files\\python37\\lib\\platform.py', 'PYMODULE'),
+ ('token', 'c:\\program files\\python37\\lib\\token.py', 'PYMODULE'),
+ ('tokenize', 'c:\\program files\\python37\\lib\\tokenize.py', 'PYMODULE'),
+ ('urllib.parse',
+ 'c:\\program files\\python37\\lib\\urllib\\parse.py',
+ 'PYMODULE'),
+ ('tempfile', 'c:\\program files\\python37\\lib\\tempfile.py', 'PYMODULE'),
+ ('tty', 'c:\\program files\\python37\\lib\\tty.py', 'PYMODULE'),
+ ('pydoc_data',
+ 'c:\\program files\\python37\\lib\\pydoc_data\\__init__.py',
+ 'PYMODULE'),
+ ('pydoc_data.topics',
+ 'c:\\program files\\python37\\lib\\pydoc_data\\topics.py',
+ 'PYMODULE'),
+ ('html.entities',
+ 'c:\\program files\\python37\\lib\\html\\entities.py',
+ 'PYMODULE'),
+ ('html', 'c:\\program files\\python37\\lib\\html\\__init__.py', 'PYMODULE'),
+ ('ssl', 'c:\\program files\\python37\\lib\\ssl.py', 'PYMODULE'),
+ ('http.client',
+ 'c:\\program files\\python37\\lib\\http\\client.py',
+ 'PYMODULE'),
+ ('mimetypes', 'c:\\program files\\python37\\lib\\mimetypes.py', 'PYMODULE'),
+ ('socketserver',
+ 'c:\\program files\\python37\\lib\\socketserver.py',
+ 'PYMODULE'),
+ ('http', 'c:\\program files\\python37\\lib\\http\\__init__.py', 'PYMODULE'),
+ ('http.server',
+ 'c:\\program files\\python37\\lib\\http\\server.py',
+ 'PYMODULE'),
+ ('optparse', 'c:\\program files\\python37\\lib\\optparse.py', 'PYMODULE'),
+ ('uu', 'c:\\program files\\python37\\lib\\uu.py', 'PYMODULE'),
+ ('quopri', 'c:\\program files\\python37\\lib\\quopri.py', 'PYMODULE'),
+ ('email.feedparser',
+ 'c:\\program files\\python37\\lib\\email\\feedparser.py',
+ 'PYMODULE'),
+ ('email.parser',
+ 'c:\\program files\\python37\\lib\\email\\parser.py',
+ 'PYMODULE'),
+ ('email', 'c:\\program files\\python37\\lib\\email\\__init__.py', 'PYMODULE'),
+ ('calendar', 'c:\\program files\\python37\\lib\\calendar.py', 'PYMODULE'),
+ ('email._parseaddr',
+ 'c:\\program files\\python37\\lib\\email\\_parseaddr.py',
+ 'PYMODULE'),
+ ('email.utils',
+ 'c:\\program files\\python37\\lib\\email\\utils.py',
+ 'PYMODULE'),
+ ('email.errors',
+ 'c:\\program files\\python37\\lib\\email\\errors.py',
+ 'PYMODULE'),
+ ('email.header',
+ 'c:\\program files\\python37\\lib\\email\\header.py',
+ 'PYMODULE'),
+ ('email._policybase',
+ 'c:\\program files\\python37\\lib\\email\\_policybase.py',
+ 'PYMODULE'),
+ ('email.base64mime',
+ 'c:\\program files\\python37\\lib\\email\\base64mime.py',
+ 'PYMODULE'),
+ ('email.encoders',
+ 'c:\\program files\\python37\\lib\\email\\encoders.py',
+ 'PYMODULE'),
+ ('email.charset',
+ 'c:\\program files\\python37\\lib\\email\\charset.py',
+ 'PYMODULE'),
+ ('base64', 'c:\\program files\\python37\\lib\\base64.py', 'PYMODULE'),
+ ('email._encoded_words',
+ 'c:\\program files\\python37\\lib\\email\\_encoded_words.py',
+ 'PYMODULE'),
+ ('hashlib', 'c:\\program files\\python37\\lib\\hashlib.py', 'PYMODULE'),
+ ('bisect', 'c:\\program files\\python37\\lib\\bisect.py', 'PYMODULE'),
+ ('random', 'c:\\program files\\python37\\lib\\random.py', 'PYMODULE'),
+ ('email.generator',
+ 'c:\\program files\\python37\\lib\\email\\generator.py',
+ 'PYMODULE'),
+ ('email.iterators',
+ 'c:\\program files\\python37\\lib\\email\\iterators.py',
+ 'PYMODULE'),
+ ('urllib',
+ 'c:\\program files\\python37\\lib\\urllib\\__init__.py',
+ 'PYMODULE'),
+ ('email._header_value_parser',
+ 'c:\\program files\\python37\\lib\\email\\_header_value_parser.py',
+ 'PYMODULE'),
+ ('email.headerregistry',
+ 'c:\\program files\\python37\\lib\\email\\headerregistry.py',
+ 'PYMODULE'),
+ ('email.quoprimime',
+ 'c:\\program files\\python37\\lib\\email\\quoprimime.py',
+ 'PYMODULE'),
+ ('email.contentmanager',
+ 'c:\\program files\\python37\\lib\\email\\contentmanager.py',
+ 'PYMODULE'),
+ ('email.policy',
+ 'c:\\program files\\python37\\lib\\email\\policy.py',
+ 'PYMODULE'),
+ ('email.message',
+ 'c:\\program files\\python37\\lib\\email\\message.py',
+ 'PYMODULE'),
+ ('bz2', 'c:\\program files\\python37\\lib\\bz2.py', 'PYMODULE'),
+ ('lzma', 'c:\\program files\\python37\\lib\\lzma.py', 'PYMODULE'),
+ ('_compression',
+ 'c:\\program files\\python37\\lib\\_compression.py',
+ 'PYMODULE'),
+ ('gzip', 'c:\\program files\\python37\\lib\\gzip.py', 'PYMODULE'),
+ ('tarfile', 'c:\\program files\\python37\\lib\\tarfile.py', 'PYMODULE'),
+ ('py_compile', 'c:\\program files\\python37\\lib\\py_compile.py', 'PYMODULE'),
+ ('zipfile', 'c:\\program files\\python37\\lib\\zipfile.py', 'PYMODULE'),
+ ('shutil', 'c:\\program files\\python37\\lib\\shutil.py', 'PYMODULE'),
+ ('webbrowser', 'c:\\program files\\python37\\lib\\webbrowser.py', 'PYMODULE'),
+ ('pydoc', 'c:\\program files\\python37\\lib\\pydoc.py', 'PYMODULE'),
+ ('getopt', 'c:\\program files\\python37\\lib\\getopt.py', 'PYMODULE'),
+ ('pdb', 'c:\\program files\\python37\\lib\\pdb.py', 'PYMODULE'),
+ ('unittest.util',
+ 'c:\\program files\\python37\\lib\\unittest\\util.py',
+ 'PYMODULE'),
+ ('unittest.result',
+ 'c:\\program files\\python37\\lib\\unittest\\result.py',
+ 'PYMODULE'),
+ ('string', 'c:\\program files\\python37\\lib\\string.py', 'PYMODULE'),
+ ('_compat_pickle',
+ 'c:\\program files\\python37\\lib\\_compat_pickle.py',
+ 'PYMODULE'),
+ ('pickle', 'c:\\program files\\python37\\lib\\pickle.py', 'PYMODULE'),
+ ('logging',
+ 'c:\\program files\\python37\\lib\\logging\\__init__.py',
+ 'PYMODULE'),
+ ('pprint', 'c:\\program files\\python37\\lib\\pprint.py', 'PYMODULE'),
+ ('unittest.case',
+ 'c:\\program files\\python37\\lib\\unittest\\case.py',
+ 'PYMODULE'),
+ ('unittest.suite',
+ 'c:\\program files\\python37\\lib\\unittest\\suite.py',
+ 'PYMODULE'),
+ ('fnmatch', 'c:\\program files\\python37\\lib\\fnmatch.py', 'PYMODULE'),
+ ('unittest.loader',
+ 'c:\\program files\\python37\\lib\\unittest\\loader.py',
+ 'PYMODULE'),
+ ('unittest.runner',
+ 'c:\\program files\\python37\\lib\\unittest\\runner.py',
+ 'PYMODULE'),
+ ('unittest.main',
+ 'c:\\program files\\python37\\lib\\unittest\\main.py',
+ 'PYMODULE'),
+ ('unittest.signals',
+ 'c:\\program files\\python37\\lib\\unittest\\signals.py',
+ 'PYMODULE'),
+ ('unittest',
+ 'c:\\program files\\python37\\lib\\unittest\\__init__.py',
+ 'PYMODULE'),
+ ('struct', 'c:\\program files\\python37\\lib\\struct.py', 'PYMODULE'),
+ ('gettext', 'c:\\program files\\python37\\lib\\gettext.py', 'PYMODULE'),
+ ('textwrap', 'c:\\program files\\python37\\lib\\textwrap.py', 'PYMODULE'),
+ ('argparse', 'c:\\program files\\python37\\lib\\argparse.py', 'PYMODULE'),
+ ('doctest', 'c:\\program files\\python37\\lib\\doctest.py', 'PYMODULE'),
+ ('_py_abc', 'c:\\program files\\python37\\lib\\_py_abc.py', 'PYMODULE'),
+ ('stat', 'c:\\program files\\python37\\lib\\stat.py', 'PYMODULE'),
+ ('genericpath',
+ 'c:\\program files\\python37\\lib\\genericpath.py',
+ 'PYMODULE'),
+ ('posixpath', 'c:\\program files\\python37\\lib\\posixpath.py', 'PYMODULE'),
+ ('signal', 'c:\\program files\\python37\\lib\\signal.py', 'PYMODULE'),
+ ('contextlib', 'c:\\program files\\python37\\lib\\contextlib.py', 'PYMODULE'),
+ ('_threading_local',
+ 'c:\\program files\\python37\\lib\\_threading_local.py',
+ 'PYMODULE'),
+ ('threading', 'c:\\program files\\python37\\lib\\threading.py', 'PYMODULE'),
+ ('selectors', 'c:\\program files\\python37\\lib\\selectors.py', 'PYMODULE'),
+ ('subprocess', 'c:\\program files\\python37\\lib\\subprocess.py', 'PYMODULE'),
+ ('os', 'c:\\program files\\python37\\lib\\os.py', 'PYMODULE'),
+ ('copy', 'c:\\program files\\python37\\lib\\copy.py', 'PYMODULE'),
+ ('MkpWIFI.MKPrint_GUI',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\MKPrint_GUI.py',
+ 'PYMODULE'),
+ ('MkpWIFI',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\__init__.py',
+ 'PYMODULE'),
+ ('PyQt5',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\__init__.py',
+ 'PYMODULE'),
+ ('json', 'c:\\program files\\python37\\lib\\json\\__init__.py', 'PYMODULE'),
+ ('json.encoder',
+ 'c:\\program files\\python37\\lib\\json\\encoder.py',
+ 'PYMODULE'),
+ ('json.decoder',
+ 'c:\\program files\\python37\\lib\\json\\decoder.py',
+ 'PYMODULE'),
+ ('json.scanner',
+ 'c:\\program files\\python37\\lib\\json\\scanner.py',
+ 'PYMODULE'),
+ ('socket', 'c:\\program files\\python37\\lib\\socket.py', 'PYMODULE'),
+ ('datetime', 'c:\\program files\\python37\\lib\\datetime.py', 'PYMODULE')],
+ [('api-ms-win-crt-locale-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-locale-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-math-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-math-l1-1-0.dll',
+ 'BINARY'),
+ ('VCRUNTIME140.dll',
+ 'c:\\program files\\python37\\VCRUNTIME140.dll',
+ 'BINARY'),
+ ('python37.dll', 'c:\\program files\\python37\\python37.dll', 'BINARY'),
+ ('api-ms-win-crt-stdio-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-stdio-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-heap-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-heap-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-runtime-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-runtime-l1-1-0.dll',
+ 'BINARY'),
+ ('ucrtbase.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\ucrtbase.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-convert-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-convert-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-string-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-string-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-environment-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-environment-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-process-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-process-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-conio-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-conio-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-filesystem-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-filesystem-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-time-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-time-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-string-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-string-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-libraryloader-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-libraryloader-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-debug-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-debug-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-timezone-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-timezone-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-file-l2-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-file-l2-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-datetime-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-datetime-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-profile-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-profile-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-util-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-util-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-namedpipe-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-namedpipe-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-file-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-file-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-errorhandling-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-errorhandling-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-handle-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-handle-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-sysinfo-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-sysinfo-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-processthreads-l1-1-1.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-processthreads-l1-1-1.dll',
+ 'BINARY'),
+ ('api-ms-win-core-interlocked-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-interlocked-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-memory-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-memory-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-localization-l1-2-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-localization-l1-2-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-console-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-console-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-heap-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-heap-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-processenvironment-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-processenvironment-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-processthreads-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-processthreads-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-file-l1-2-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-file-l1-2-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-rtlsupport-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-rtlsupport-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-synch-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-synch-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-synch-l1-2-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-synch-l1-2-0.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qwebp.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qwebp.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qwebgl.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qwebgl.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qsvg.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qsvg.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\opengl32sw.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\opengl32sw.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qicns.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qicns.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qjpeg.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qjpeg.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qtiff.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qtiff.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qwindows.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qwindows.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qwbmp.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qwbmp.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\libEGL.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\libEGL.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qminimal.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qminimal.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qico.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qico.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\styles\\qwindowsvistastyle.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\styles\\qwindowsvistastyle.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\iconengines\\qsvgicon.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\iconengines\\qsvgicon.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platformthemes\\qxdgdesktopportal.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platformthemes\\qxdgdesktopportal.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qtga.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qtga.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qgif.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qgif.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qoffscreen.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qoffscreen.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\libGLESv2.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\libGLESv2.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\d3dcompiler_47.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\d3dcompiler_47.dll',
+ 'BINARY'),
+ ('_ssl', 'c:\\program files\\python37\\DLLs\\_ssl.pyd', 'EXTENSION'),
+ ('unicodedata',
+ 'c:\\program files\\python37\\DLLs\\unicodedata.pyd',
+ 'EXTENSION'),
+ ('pyexpat', 'c:\\program files\\python37\\DLLs\\pyexpat.pyd', 'EXTENSION'),
+ ('_hashlib', 'c:\\program files\\python37\\DLLs\\_hashlib.pyd', 'EXTENSION'),
+ ('_bz2', 'c:\\program files\\python37\\DLLs\\_bz2.pyd', 'EXTENSION'),
+ ('_lzma', 'c:\\program files\\python37\\DLLs\\_lzma.pyd', 'EXTENSION'),
+ ('_socket', 'c:\\program files\\python37\\DLLs\\_socket.pyd', 'EXTENSION'),
+ ('select', 'c:\\program files\\python37\\DLLs\\select.pyd', 'EXTENSION'),
+ ('PyQt5.QtGui',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\QtGui.pyd',
+ 'EXTENSION'),
+ ('PyQt5.QtCore',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\QtCore.pyd',
+ 'EXTENSION'),
+ ('PyQt5.sip',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\sip.pyd',
+ 'EXTENSION'),
+ ('PyQt5.QtWidgets',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\QtWidgets.pyd',
+ 'EXTENSION'),
+ ('Qt5Gui.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5gui.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-utility-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-utility-l1-1-0.dll',
+ 'BINARY'),
+ ('Qt5Core.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5core.dll',
+ 'BINARY'),
+ ('Qt5Quick.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5quick.dll',
+ 'BINARY'),
+ ('Qt5WebSockets.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5websockets.dll',
+ 'BINARY'),
+ ('Qt5Network.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5network.dll',
+ 'BINARY'),
+ ('Qt5Svg.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5svg.dll',
+ 'BINARY'),
+ ('libGLESv2.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\libGLESv2.dll',
+ 'BINARY'),
+ ('Qt5Widgets.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5widgets.dll',
+ 'BINARY'),
+ ('Qt5DBus.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5dbus.dll',
+ 'BINARY'),
+ ('MSVCP140.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\MSVCP140.dll',
+ 'BINARY'),
+ ('libcrypto-1_1-x64.dll',
+ 'c:\\program files\\python37\\DLLs\\libcrypto-1_1-x64.dll',
+ 'BINARY'),
+ ('libssl-1_1-x64.dll',
+ 'c:\\program files\\python37\\DLLs\\libssl-1_1-x64.dll',
+ 'BINARY'),
+ ('python3.dll', 'c:\\program files\\python37\\python3.dll', 'BINARY'),
+ ('Qt5Qml.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\Qt5Qml.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-multibyte-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-multibyte-l1-1-0.dll',
+ 'BINARY')],
+ [],
+ [],
+ [('base_library.zip',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\build\\main\\base_library.zip',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_lv.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_lv.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_de.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_de.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_pl.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_pl.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ko.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ko.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_uk.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_uk.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_hu.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_hu.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_gd.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_gd.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ja.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ja.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_es.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_es.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_he.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_he.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_fr.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_fr.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ar.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ar.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_fi.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_fi.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_cs.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_cs.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_bg.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_bg.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_it.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_it.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ru.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ru.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_en.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_en.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_da.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_da.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_sk.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_sk.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ca.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ca.qm',
+ 'DATA')],
+ [])
diff --git a/MkpWIFI/build/main/EXE-00.toc b/MkpWIFI/build/main/EXE-00.toc
new file mode 100644
index 0000000..6eb202d
--- /dev/null
+++ b/MkpWIFI/build/main/EXE-00.toc
@@ -0,0 +1,440 @@
+('C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\dist\\main.exe',
+ True,
+ False,
+ False,
+ None,
+ None,
+ False,
+ False,
+ '',
+ True,
+ 'main.pkg',
+ [('PYZ-00.pyz',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\build\\main\\PYZ-00.pyz',
+ 'PYZ'),
+ ('struct',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\build\\main\\localpycos\\struct.pyo',
+ 'PYMODULE'),
+ ('pyimod01_os_path',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\loader\\pyimod01_os_path.pyc',
+ 'PYMODULE'),
+ ('pyimod02_archive',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\loader\\pyimod02_archive.pyc',
+ 'PYMODULE'),
+ ('pyimod03_importers',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\loader\\pyimod03_importers.pyc',
+ 'PYMODULE'),
+ ('pyiboot01_bootstrap',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
+ 'PYSOURCE'),
+ ('pyi_rth_qt5',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\loader\\rthooks\\pyi_rth_qt5.py',
+ 'PYSOURCE'),
+ ('main',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\main.py',
+ 'PYSOURCE'),
+ ('api-ms-win-crt-locale-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-locale-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-math-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-math-l1-1-0.dll',
+ 'BINARY'),
+ ('VCRUNTIME140.dll',
+ 'c:\\program files\\python37\\VCRUNTIME140.dll',
+ 'BINARY'),
+ ('python37.dll', 'c:\\program files\\python37\\python37.dll', 'BINARY'),
+ ('api-ms-win-crt-stdio-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-stdio-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-heap-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-heap-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-runtime-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-runtime-l1-1-0.dll',
+ 'BINARY'),
+ ('ucrtbase.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\ucrtbase.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-convert-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-convert-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-string-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-string-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-environment-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-environment-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-process-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-process-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-conio-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-conio-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-filesystem-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-filesystem-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-time-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-time-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-string-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-string-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-libraryloader-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-libraryloader-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-debug-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-debug-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-timezone-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-timezone-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-file-l2-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-file-l2-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-datetime-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-datetime-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-profile-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-profile-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-util-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-util-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-namedpipe-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-namedpipe-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-file-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-file-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-errorhandling-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-errorhandling-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-handle-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-handle-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-sysinfo-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-sysinfo-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-processthreads-l1-1-1.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-processthreads-l1-1-1.dll',
+ 'BINARY'),
+ ('api-ms-win-core-interlocked-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-interlocked-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-memory-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-memory-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-localization-l1-2-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-localization-l1-2-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-console-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-console-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-heap-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-heap-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-processenvironment-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-processenvironment-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-processthreads-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-processthreads-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-file-l1-2-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-file-l1-2-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-rtlsupport-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-rtlsupport-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-synch-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-synch-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-synch-l1-2-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-synch-l1-2-0.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qwebp.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qwebp.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qwebgl.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qwebgl.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qsvg.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qsvg.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\opengl32sw.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\opengl32sw.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qicns.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qicns.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qjpeg.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qjpeg.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qtiff.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qtiff.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qwindows.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qwindows.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qwbmp.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qwbmp.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\libEGL.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\libEGL.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qminimal.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qminimal.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qico.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qico.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\styles\\qwindowsvistastyle.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\styles\\qwindowsvistastyle.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\iconengines\\qsvgicon.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\iconengines\\qsvgicon.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platformthemes\\qxdgdesktopportal.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platformthemes\\qxdgdesktopportal.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qtga.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qtga.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qgif.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qgif.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qoffscreen.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qoffscreen.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\libGLESv2.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\libGLESv2.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\d3dcompiler_47.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\d3dcompiler_47.dll',
+ 'BINARY'),
+ ('_ssl', 'c:\\program files\\python37\\DLLs\\_ssl.pyd', 'EXTENSION'),
+ ('unicodedata',
+ 'c:\\program files\\python37\\DLLs\\unicodedata.pyd',
+ 'EXTENSION'),
+ ('pyexpat', 'c:\\program files\\python37\\DLLs\\pyexpat.pyd', 'EXTENSION'),
+ ('_hashlib', 'c:\\program files\\python37\\DLLs\\_hashlib.pyd', 'EXTENSION'),
+ ('_bz2', 'c:\\program files\\python37\\DLLs\\_bz2.pyd', 'EXTENSION'),
+ ('_lzma', 'c:\\program files\\python37\\DLLs\\_lzma.pyd', 'EXTENSION'),
+ ('_socket', 'c:\\program files\\python37\\DLLs\\_socket.pyd', 'EXTENSION'),
+ ('select', 'c:\\program files\\python37\\DLLs\\select.pyd', 'EXTENSION'),
+ ('PyQt5.QtGui',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\QtGui.pyd',
+ 'EXTENSION'),
+ ('PyQt5.QtCore',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\QtCore.pyd',
+ 'EXTENSION'),
+ ('PyQt5.sip',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\sip.pyd',
+ 'EXTENSION'),
+ ('PyQt5.QtWidgets',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\QtWidgets.pyd',
+ 'EXTENSION'),
+ ('Qt5Gui.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5gui.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-utility-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-utility-l1-1-0.dll',
+ 'BINARY'),
+ ('Qt5Core.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5core.dll',
+ 'BINARY'),
+ ('Qt5Quick.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5quick.dll',
+ 'BINARY'),
+ ('Qt5WebSockets.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5websockets.dll',
+ 'BINARY'),
+ ('Qt5Network.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5network.dll',
+ 'BINARY'),
+ ('Qt5Svg.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5svg.dll',
+ 'BINARY'),
+ ('libGLESv2.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\libGLESv2.dll',
+ 'BINARY'),
+ ('Qt5Widgets.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5widgets.dll',
+ 'BINARY'),
+ ('Qt5DBus.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5dbus.dll',
+ 'BINARY'),
+ ('MSVCP140.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\MSVCP140.dll',
+ 'BINARY'),
+ ('libcrypto-1_1-x64.dll',
+ 'c:\\program files\\python37\\DLLs\\libcrypto-1_1-x64.dll',
+ 'BINARY'),
+ ('libssl-1_1-x64.dll',
+ 'c:\\program files\\python37\\DLLs\\libssl-1_1-x64.dll',
+ 'BINARY'),
+ ('python3.dll', 'c:\\program files\\python37\\python3.dll', 'BINARY'),
+ ('Qt5Qml.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\Qt5Qml.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-multibyte-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-multibyte-l1-1-0.dll',
+ 'BINARY'),
+ ('base_library.zip',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\build\\main\\base_library.zip',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_lv.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_lv.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_de.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_de.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_pl.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_pl.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ko.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ko.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_uk.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_uk.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_hu.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_hu.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_gd.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_gd.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ja.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ja.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_es.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_es.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_he.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_he.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_fr.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_fr.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ar.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ar.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_fi.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_fi.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_cs.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_cs.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_bg.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_bg.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_it.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_it.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ru.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ru.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_en.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_en.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_da.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_da.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_sk.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_sk.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ca.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ca.qm',
+ 'DATA'),
+ ('main.exe.manifest',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\build\\main\\main.exe.manifest',
+ 'BINARY'),
+ ('pyi-windows-manifest-filename main.exe.manifest', '', 'OPTION')],
+ [],
+ False,
+ False,
+ 1555509474,
+ [('run.exe',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\bootloader\\Windows-64bit\\run.exe',
+ 'EXECUTABLE')])
diff --git a/MkpWIFI/build/main/PKG-00.pkg b/MkpWIFI/build/main/PKG-00.pkg
new file mode 100644
index 0000000..2deeee8
Binary files /dev/null and b/MkpWIFI/build/main/PKG-00.pkg differ
diff --git a/MkpWIFI/build/main/PKG-00.toc b/MkpWIFI/build/main/PKG-00.toc
new file mode 100644
index 0000000..87258c9
--- /dev/null
+++ b/MkpWIFI/build/main/PKG-00.toc
@@ -0,0 +1,432 @@
+('C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\build\\main\\PKG-00.pkg',
+ {'BINARY': 1,
+ 'DATA': 1,
+ 'EXECUTABLE': 1,
+ 'EXTENSION': 1,
+ 'PYMODULE': 1,
+ 'PYSOURCE': 1,
+ 'PYZ': 0},
+ [('PYZ-00.pyz',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\build\\main\\PYZ-00.pyz',
+ 'PYZ'),
+ ('struct',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\build\\main\\localpycos\\struct.pyo',
+ 'PYMODULE'),
+ ('pyimod01_os_path',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\loader\\pyimod01_os_path.pyc',
+ 'PYMODULE'),
+ ('pyimod02_archive',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\loader\\pyimod02_archive.pyc',
+ 'PYMODULE'),
+ ('pyimod03_importers',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\loader\\pyimod03_importers.pyc',
+ 'PYMODULE'),
+ ('pyiboot01_bootstrap',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\loader\\pyiboot01_bootstrap.py',
+ 'PYSOURCE'),
+ ('pyi_rth_qt5',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyInstaller\\loader\\rthooks\\pyi_rth_qt5.py',
+ 'PYSOURCE'),
+ ('main',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\main.py',
+ 'PYSOURCE'),
+ ('api-ms-win-crt-locale-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-locale-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-math-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-math-l1-1-0.dll',
+ 'BINARY'),
+ ('VCRUNTIME140.dll',
+ 'c:\\program files\\python37\\VCRUNTIME140.dll',
+ 'BINARY'),
+ ('python37.dll', 'c:\\program files\\python37\\python37.dll', 'BINARY'),
+ ('api-ms-win-crt-stdio-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-stdio-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-heap-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-heap-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-runtime-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-runtime-l1-1-0.dll',
+ 'BINARY'),
+ ('ucrtbase.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\ucrtbase.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-convert-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-convert-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-string-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-string-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-environment-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-environment-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-process-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-process-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-conio-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-conio-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-filesystem-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-filesystem-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-time-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-time-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-string-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-string-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-libraryloader-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-libraryloader-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-debug-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-debug-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-timezone-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-timezone-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-file-l2-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-file-l2-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-datetime-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-datetime-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-profile-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-profile-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-util-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-util-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-namedpipe-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-namedpipe-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-file-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-file-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-errorhandling-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-errorhandling-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-handle-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-handle-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-sysinfo-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-sysinfo-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-processthreads-l1-1-1.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-processthreads-l1-1-1.dll',
+ 'BINARY'),
+ ('api-ms-win-core-interlocked-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-interlocked-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-memory-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-memory-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-localization-l1-2-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-localization-l1-2-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-console-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-console-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-heap-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-heap-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-processenvironment-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-processenvironment-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-processthreads-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-processthreads-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-file-l1-2-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-file-l1-2-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-rtlsupport-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-core-rtlsupport-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-synch-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-synch-l1-1-0.dll',
+ 'BINARY'),
+ ('api-ms-win-core-synch-l1-2-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-core-synch-l1-2-0.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qwebp.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qwebp.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qwebgl.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qwebgl.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qsvg.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qsvg.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\opengl32sw.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\opengl32sw.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qicns.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qicns.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qjpeg.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qjpeg.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qtiff.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qtiff.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qwindows.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qwindows.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qwbmp.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qwbmp.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\libEGL.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\libEGL.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qminimal.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qminimal.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qico.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qico.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\styles\\qwindowsvistastyle.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\styles\\qwindowsvistastyle.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\iconengines\\qsvgicon.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\iconengines\\qsvgicon.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platformthemes\\qxdgdesktopportal.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platformthemes\\qxdgdesktopportal.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qtga.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qtga.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\imageformats\\qgif.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\imageformats\\qgif.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\plugins\\platforms\\qoffscreen.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\plugins\\platforms\\qoffscreen.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\libGLESv2.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\libGLESv2.dll',
+ 'BINARY'),
+ ('PyQt5\\Qt\\bin\\d3dcompiler_47.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\d3dcompiler_47.dll',
+ 'BINARY'),
+ ('_ssl', 'c:\\program files\\python37\\DLLs\\_ssl.pyd', 'EXTENSION'),
+ ('unicodedata',
+ 'c:\\program files\\python37\\DLLs\\unicodedata.pyd',
+ 'EXTENSION'),
+ ('pyexpat', 'c:\\program files\\python37\\DLLs\\pyexpat.pyd', 'EXTENSION'),
+ ('_hashlib', 'c:\\program files\\python37\\DLLs\\_hashlib.pyd', 'EXTENSION'),
+ ('_bz2', 'c:\\program files\\python37\\DLLs\\_bz2.pyd', 'EXTENSION'),
+ ('_lzma', 'c:\\program files\\python37\\DLLs\\_lzma.pyd', 'EXTENSION'),
+ ('_socket', 'c:\\program files\\python37\\DLLs\\_socket.pyd', 'EXTENSION'),
+ ('select', 'c:\\program files\\python37\\DLLs\\select.pyd', 'EXTENSION'),
+ ('PyQt5.QtGui',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\QtGui.pyd',
+ 'EXTENSION'),
+ ('PyQt5.QtCore',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\QtCore.pyd',
+ 'EXTENSION'),
+ ('PyQt5.sip',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\sip.pyd',
+ 'EXTENSION'),
+ ('PyQt5.QtWidgets',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\QtWidgets.pyd',
+ 'EXTENSION'),
+ ('Qt5Gui.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5gui.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-utility-l1-1-0.dll',
+ 'C:/Program Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-utility-l1-1-0.dll',
+ 'BINARY'),
+ ('Qt5Core.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5core.dll',
+ 'BINARY'),
+ ('Qt5Quick.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5quick.dll',
+ 'BINARY'),
+ ('Qt5WebSockets.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5websockets.dll',
+ 'BINARY'),
+ ('Qt5Network.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5network.dll',
+ 'BINARY'),
+ ('Qt5Svg.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5svg.dll',
+ 'BINARY'),
+ ('libGLESv2.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\libGLESv2.dll',
+ 'BINARY'),
+ ('Qt5Widgets.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5widgets.dll',
+ 'BINARY'),
+ ('Qt5DBus.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\qt5dbus.dll',
+ 'BINARY'),
+ ('MSVCP140.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\MSVCP140.dll',
+ 'BINARY'),
+ ('libcrypto-1_1-x64.dll',
+ 'c:\\program files\\python37\\DLLs\\libcrypto-1_1-x64.dll',
+ 'BINARY'),
+ ('libssl-1_1-x64.dll',
+ 'c:\\program files\\python37\\DLLs\\libssl-1_1-x64.dll',
+ 'BINARY'),
+ ('python3.dll', 'c:\\program files\\python37\\python3.dll', 'BINARY'),
+ ('Qt5Qml.dll',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\bin\\Qt5Qml.dll',
+ 'BINARY'),
+ ('api-ms-win-crt-multibyte-l1-1-0.dll',
+ 'C:/Program '
+ 'Files/Java/jre1.8.0_201/bin\\api-ms-win-crt-multibyte-l1-1-0.dll',
+ 'BINARY'),
+ ('base_library.zip',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\build\\main\\base_library.zip',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_lv.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_lv.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_de.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_de.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_pl.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_pl.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ko.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ko.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_uk.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_uk.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_hu.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_hu.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_gd.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_gd.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ja.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ja.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_es.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_es.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_he.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_he.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_fr.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_fr.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ar.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ar.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_fi.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_fi.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_cs.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_cs.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_bg.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_bg.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_it.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_it.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ru.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ru.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_en.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_en.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_da.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_da.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_sk.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_sk.qm',
+ 'DATA'),
+ ('PyQt5\\Qt\\translations\\qtbase_ca.qm',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\Qt\\translations\\qtbase_ca.qm',
+ 'DATA'),
+ ('main.exe.manifest',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\build\\main\\main.exe.manifest',
+ 'BINARY'),
+ ('pyi-windows-manifest-filename main.exe.manifest', '', 'OPTION')],
+ False,
+ False,
+ False)
diff --git a/MkpWIFI/build/main/PYZ-00.pyz b/MkpWIFI/build/main/PYZ-00.pyz
new file mode 100644
index 0000000..10b3b47
Binary files /dev/null and b/MkpWIFI/build/main/PYZ-00.pyz differ
diff --git a/MkpWIFI/build/main/PYZ-00.toc b/MkpWIFI/build/main/PYZ-00.toc
new file mode 100644
index 0000000..6630256
--- /dev/null
+++ b/MkpWIFI/build/main/PYZ-00.toc
@@ -0,0 +1,278 @@
+('C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\build\\main\\PYZ-00.pyz',
+ [('ntpath', 'c:\\program files\\python37\\lib\\ntpath.py', 'PYMODULE'),
+ ('_strptime', 'c:\\program files\\python37\\lib\\_strptime.py', 'PYMODULE'),
+ ('tracemalloc',
+ 'c:\\program files\\python37\\lib\\tracemalloc.py',
+ 'PYMODULE'),
+ ('stringprep', 'c:\\program files\\python37\\lib\\stringprep.py', 'PYMODULE'),
+ ('typing', 'c:\\program files\\python37\\lib\\typing.py', 'PYMODULE'),
+ ('__future__', 'c:\\program files\\python37\\lib\\__future__.py', 'PYMODULE'),
+ ('difflib', 'c:\\program files\\python37\\lib\\difflib.py', 'PYMODULE'),
+ ('ast', 'c:\\program files\\python37\\lib\\ast.py', 'PYMODULE'),
+ ('inspect', 'c:\\program files\\python37\\lib\\inspect.py', 'PYMODULE'),
+ ('cmd', 'c:\\program files\\python37\\lib\\cmd.py', 'PYMODULE'),
+ ('bdb', 'c:\\program files\\python37\\lib\\bdb.py', 'PYMODULE'),
+ ('opcode', 'c:\\program files\\python37\\lib\\opcode.py', 'PYMODULE'),
+ ('dis', 'c:\\program files\\python37\\lib\\dis.py', 'PYMODULE'),
+ ('codeop', 'c:\\program files\\python37\\lib\\codeop.py', 'PYMODULE'),
+ ('code', 'c:\\program files\\python37\\lib\\code.py', 'PYMODULE'),
+ ('glob', 'c:\\program files\\python37\\lib\\glob.py', 'PYMODULE'),
+ ('shlex', 'c:\\program files\\python37\\lib\\shlex.py', 'PYMODULE'),
+ ('runpy', 'c:\\program files\\python37\\lib\\runpy.py', 'PYMODULE'),
+ ('importlib._bootstrap',
+ 'c:\\program files\\python37\\lib\\importlib\\_bootstrap.py',
+ 'PYMODULE'),
+ ('importlib._bootstrap_external',
+ 'c:\\program files\\python37\\lib\\importlib\\_bootstrap_external.py',
+ 'PYMODULE'),
+ ('importlib.machinery',
+ 'c:\\program files\\python37\\lib\\importlib\\machinery.py',
+ 'PYMODULE'),
+ ('importlib.util',
+ 'c:\\program files\\python37\\lib\\importlib\\util.py',
+ 'PYMODULE'),
+ ('importlib.abc',
+ 'c:\\program files\\python37\\lib\\importlib\\abc.py',
+ 'PYMODULE'),
+ ('importlib',
+ 'c:\\program files\\python37\\lib\\importlib\\__init__.py',
+ 'PYMODULE'),
+ ('pkgutil', 'c:\\program files\\python37\\lib\\pkgutil.py', 'PYMODULE'),
+ ('xml', 'c:\\program files\\python37\\lib\\xml\\__init__.py', 'PYMODULE'),
+ ('xml.sax.expatreader',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\expatreader.py',
+ 'PYMODULE'),
+ ('xml.sax.saxutils',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\saxutils.py',
+ 'PYMODULE'),
+ ('urllib.request',
+ 'c:\\program files\\python37\\lib\\urllib\\request.py',
+ 'PYMODULE'),
+ ('getpass', 'c:\\program files\\python37\\lib\\getpass.py', 'PYMODULE'),
+ ('nturl2path', 'c:\\program files\\python37\\lib\\nturl2path.py', 'PYMODULE'),
+ ('ftplib', 'c:\\program files\\python37\\lib\\ftplib.py', 'PYMODULE'),
+ ('netrc', 'c:\\program files\\python37\\lib\\netrc.py', 'PYMODULE'),
+ ('http.cookiejar',
+ 'c:\\program files\\python37\\lib\\http\\cookiejar.py',
+ 'PYMODULE'),
+ ('urllib.response',
+ 'c:\\program files\\python37\\lib\\urllib\\response.py',
+ 'PYMODULE'),
+ ('urllib.error',
+ 'c:\\program files\\python37\\lib\\urllib\\error.py',
+ 'PYMODULE'),
+ ('xml.sax',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\__init__.py',
+ 'PYMODULE'),
+ ('xml.sax.handler',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\handler.py',
+ 'PYMODULE'),
+ ('xml.sax._exceptions',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\_exceptions.py',
+ 'PYMODULE'),
+ ('xml.sax.xmlreader',
+ 'c:\\program files\\python37\\lib\\xml\\sax\\xmlreader.py',
+ 'PYMODULE'),
+ ('xml.parsers',
+ 'c:\\program files\\python37\\lib\\xml\\parsers\\__init__.py',
+ 'PYMODULE'),
+ ('xml.parsers.expat',
+ 'c:\\program files\\python37\\lib\\xml\\parsers\\expat.py',
+ 'PYMODULE'),
+ ('plistlib', 'c:\\program files\\python37\\lib\\plistlib.py', 'PYMODULE'),
+ ('platform', 'c:\\program files\\python37\\lib\\platform.py', 'PYMODULE'),
+ ('token', 'c:\\program files\\python37\\lib\\token.py', 'PYMODULE'),
+ ('tokenize', 'c:\\program files\\python37\\lib\\tokenize.py', 'PYMODULE'),
+ ('urllib.parse',
+ 'c:\\program files\\python37\\lib\\urllib\\parse.py',
+ 'PYMODULE'),
+ ('tempfile', 'c:\\program files\\python37\\lib\\tempfile.py', 'PYMODULE'),
+ ('tty', 'c:\\program files\\python37\\lib\\tty.py', 'PYMODULE'),
+ ('pydoc_data',
+ 'c:\\program files\\python37\\lib\\pydoc_data\\__init__.py',
+ 'PYMODULE'),
+ ('pydoc_data.topics',
+ 'c:\\program files\\python37\\lib\\pydoc_data\\topics.py',
+ 'PYMODULE'),
+ ('html.entities',
+ 'c:\\program files\\python37\\lib\\html\\entities.py',
+ 'PYMODULE'),
+ ('html', 'c:\\program files\\python37\\lib\\html\\__init__.py', 'PYMODULE'),
+ ('ssl', 'c:\\program files\\python37\\lib\\ssl.py', 'PYMODULE'),
+ ('http.client',
+ 'c:\\program files\\python37\\lib\\http\\client.py',
+ 'PYMODULE'),
+ ('mimetypes', 'c:\\program files\\python37\\lib\\mimetypes.py', 'PYMODULE'),
+ ('socketserver',
+ 'c:\\program files\\python37\\lib\\socketserver.py',
+ 'PYMODULE'),
+ ('http', 'c:\\program files\\python37\\lib\\http\\__init__.py', 'PYMODULE'),
+ ('http.server',
+ 'c:\\program files\\python37\\lib\\http\\server.py',
+ 'PYMODULE'),
+ ('optparse', 'c:\\program files\\python37\\lib\\optparse.py', 'PYMODULE'),
+ ('uu', 'c:\\program files\\python37\\lib\\uu.py', 'PYMODULE'),
+ ('quopri', 'c:\\program files\\python37\\lib\\quopri.py', 'PYMODULE'),
+ ('email.feedparser',
+ 'c:\\program files\\python37\\lib\\email\\feedparser.py',
+ 'PYMODULE'),
+ ('email.parser',
+ 'c:\\program files\\python37\\lib\\email\\parser.py',
+ 'PYMODULE'),
+ ('email', 'c:\\program files\\python37\\lib\\email\\__init__.py', 'PYMODULE'),
+ ('calendar', 'c:\\program files\\python37\\lib\\calendar.py', 'PYMODULE'),
+ ('email._parseaddr',
+ 'c:\\program files\\python37\\lib\\email\\_parseaddr.py',
+ 'PYMODULE'),
+ ('email.utils',
+ 'c:\\program files\\python37\\lib\\email\\utils.py',
+ 'PYMODULE'),
+ ('email.errors',
+ 'c:\\program files\\python37\\lib\\email\\errors.py',
+ 'PYMODULE'),
+ ('email.header',
+ 'c:\\program files\\python37\\lib\\email\\header.py',
+ 'PYMODULE'),
+ ('email._policybase',
+ 'c:\\program files\\python37\\lib\\email\\_policybase.py',
+ 'PYMODULE'),
+ ('email.base64mime',
+ 'c:\\program files\\python37\\lib\\email\\base64mime.py',
+ 'PYMODULE'),
+ ('email.encoders',
+ 'c:\\program files\\python37\\lib\\email\\encoders.py',
+ 'PYMODULE'),
+ ('email.charset',
+ 'c:\\program files\\python37\\lib\\email\\charset.py',
+ 'PYMODULE'),
+ ('base64', 'c:\\program files\\python37\\lib\\base64.py', 'PYMODULE'),
+ ('email._encoded_words',
+ 'c:\\program files\\python37\\lib\\email\\_encoded_words.py',
+ 'PYMODULE'),
+ ('hashlib', 'c:\\program files\\python37\\lib\\hashlib.py', 'PYMODULE'),
+ ('bisect', 'c:\\program files\\python37\\lib\\bisect.py', 'PYMODULE'),
+ ('random', 'c:\\program files\\python37\\lib\\random.py', 'PYMODULE'),
+ ('email.generator',
+ 'c:\\program files\\python37\\lib\\email\\generator.py',
+ 'PYMODULE'),
+ ('email.iterators',
+ 'c:\\program files\\python37\\lib\\email\\iterators.py',
+ 'PYMODULE'),
+ ('urllib',
+ 'c:\\program files\\python37\\lib\\urllib\\__init__.py',
+ 'PYMODULE'),
+ ('email._header_value_parser',
+ 'c:\\program files\\python37\\lib\\email\\_header_value_parser.py',
+ 'PYMODULE'),
+ ('email.headerregistry',
+ 'c:\\program files\\python37\\lib\\email\\headerregistry.py',
+ 'PYMODULE'),
+ ('email.quoprimime',
+ 'c:\\program files\\python37\\lib\\email\\quoprimime.py',
+ 'PYMODULE'),
+ ('email.contentmanager',
+ 'c:\\program files\\python37\\lib\\email\\contentmanager.py',
+ 'PYMODULE'),
+ ('email.policy',
+ 'c:\\program files\\python37\\lib\\email\\policy.py',
+ 'PYMODULE'),
+ ('email.message',
+ 'c:\\program files\\python37\\lib\\email\\message.py',
+ 'PYMODULE'),
+ ('bz2', 'c:\\program files\\python37\\lib\\bz2.py', 'PYMODULE'),
+ ('lzma', 'c:\\program files\\python37\\lib\\lzma.py', 'PYMODULE'),
+ ('_compression',
+ 'c:\\program files\\python37\\lib\\_compression.py',
+ 'PYMODULE'),
+ ('gzip', 'c:\\program files\\python37\\lib\\gzip.py', 'PYMODULE'),
+ ('tarfile', 'c:\\program files\\python37\\lib\\tarfile.py', 'PYMODULE'),
+ ('py_compile', 'c:\\program files\\python37\\lib\\py_compile.py', 'PYMODULE'),
+ ('zipfile', 'c:\\program files\\python37\\lib\\zipfile.py', 'PYMODULE'),
+ ('shutil', 'c:\\program files\\python37\\lib\\shutil.py', 'PYMODULE'),
+ ('webbrowser', 'c:\\program files\\python37\\lib\\webbrowser.py', 'PYMODULE'),
+ ('pydoc', 'c:\\program files\\python37\\lib\\pydoc.py', 'PYMODULE'),
+ ('getopt', 'c:\\program files\\python37\\lib\\getopt.py', 'PYMODULE'),
+ ('pdb', 'c:\\program files\\python37\\lib\\pdb.py', 'PYMODULE'),
+ ('unittest.util',
+ 'c:\\program files\\python37\\lib\\unittest\\util.py',
+ 'PYMODULE'),
+ ('unittest.result',
+ 'c:\\program files\\python37\\lib\\unittest\\result.py',
+ 'PYMODULE'),
+ ('string', 'c:\\program files\\python37\\lib\\string.py', 'PYMODULE'),
+ ('_compat_pickle',
+ 'c:\\program files\\python37\\lib\\_compat_pickle.py',
+ 'PYMODULE'),
+ ('pickle', 'c:\\program files\\python37\\lib\\pickle.py', 'PYMODULE'),
+ ('logging',
+ 'c:\\program files\\python37\\lib\\logging\\__init__.py',
+ 'PYMODULE'),
+ ('pprint', 'c:\\program files\\python37\\lib\\pprint.py', 'PYMODULE'),
+ ('unittest.case',
+ 'c:\\program files\\python37\\lib\\unittest\\case.py',
+ 'PYMODULE'),
+ ('unittest.suite',
+ 'c:\\program files\\python37\\lib\\unittest\\suite.py',
+ 'PYMODULE'),
+ ('fnmatch', 'c:\\program files\\python37\\lib\\fnmatch.py', 'PYMODULE'),
+ ('unittest.loader',
+ 'c:\\program files\\python37\\lib\\unittest\\loader.py',
+ 'PYMODULE'),
+ ('unittest.runner',
+ 'c:\\program files\\python37\\lib\\unittest\\runner.py',
+ 'PYMODULE'),
+ ('unittest.main',
+ 'c:\\program files\\python37\\lib\\unittest\\main.py',
+ 'PYMODULE'),
+ ('unittest.signals',
+ 'c:\\program files\\python37\\lib\\unittest\\signals.py',
+ 'PYMODULE'),
+ ('unittest',
+ 'c:\\program files\\python37\\lib\\unittest\\__init__.py',
+ 'PYMODULE'),
+ ('struct', 'c:\\program files\\python37\\lib\\struct.py', 'PYMODULE'),
+ ('gettext', 'c:\\program files\\python37\\lib\\gettext.py', 'PYMODULE'),
+ ('textwrap', 'c:\\program files\\python37\\lib\\textwrap.py', 'PYMODULE'),
+ ('argparse', 'c:\\program files\\python37\\lib\\argparse.py', 'PYMODULE'),
+ ('doctest', 'c:\\program files\\python37\\lib\\doctest.py', 'PYMODULE'),
+ ('_py_abc', 'c:\\program files\\python37\\lib\\_py_abc.py', 'PYMODULE'),
+ ('stat', 'c:\\program files\\python37\\lib\\stat.py', 'PYMODULE'),
+ ('genericpath',
+ 'c:\\program files\\python37\\lib\\genericpath.py',
+ 'PYMODULE'),
+ ('posixpath', 'c:\\program files\\python37\\lib\\posixpath.py', 'PYMODULE'),
+ ('signal', 'c:\\program files\\python37\\lib\\signal.py', 'PYMODULE'),
+ ('contextlib', 'c:\\program files\\python37\\lib\\contextlib.py', 'PYMODULE'),
+ ('_threading_local',
+ 'c:\\program files\\python37\\lib\\_threading_local.py',
+ 'PYMODULE'),
+ ('threading', 'c:\\program files\\python37\\lib\\threading.py', 'PYMODULE'),
+ ('selectors', 'c:\\program files\\python37\\lib\\selectors.py', 'PYMODULE'),
+ ('subprocess', 'c:\\program files\\python37\\lib\\subprocess.py', 'PYMODULE'),
+ ('os', 'c:\\program files\\python37\\lib\\os.py', 'PYMODULE'),
+ ('copy', 'c:\\program files\\python37\\lib\\copy.py', 'PYMODULE'),
+ ('MkpWIFI.MKPrint_GUI',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\MKPrint_GUI.py',
+ 'PYMODULE'),
+ ('MkpWIFI',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI\\__init__.py',
+ 'PYMODULE'),
+ ('PyQt5',
+ 'C:\\Users\\Emanuele '
+ 'Trabattoni\\AppData\\Roaming\\Python\\Python37\\site-packages\\PyQt5\\__init__.py',
+ 'PYMODULE'),
+ ('json', 'c:\\program files\\python37\\lib\\json\\__init__.py', 'PYMODULE'),
+ ('json.encoder',
+ 'c:\\program files\\python37\\lib\\json\\encoder.py',
+ 'PYMODULE'),
+ ('json.decoder',
+ 'c:\\program files\\python37\\lib\\json\\decoder.py',
+ 'PYMODULE'),
+ ('json.scanner',
+ 'c:\\program files\\python37\\lib\\json\\scanner.py',
+ 'PYMODULE'),
+ ('socket', 'c:\\program files\\python37\\lib\\socket.py', 'PYMODULE'),
+ ('datetime', 'c:\\program files\\python37\\lib\\datetime.py', 'PYMODULE')])
diff --git a/MkpWIFI/build/main/base_library.zip b/MkpWIFI/build/main/base_library.zip
new file mode 100644
index 0000000..e113735
Binary files /dev/null and b/MkpWIFI/build/main/base_library.zip differ
diff --git a/MkpWIFI/build/main/localpycos/struct.pyo b/MkpWIFI/build/main/localpycos/struct.pyo
new file mode 100644
index 0000000..2041d2f
Binary files /dev/null and b/MkpWIFI/build/main/localpycos/struct.pyo differ
diff --git a/MkpWIFI/build/main/main.exe.manifest b/MkpWIFI/build/main/main.exe.manifest
new file mode 100644
index 0000000..247cc83
--- /dev/null
+++ b/MkpWIFI/build/main/main.exe.manifest
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/MkpWIFI/build/main/warn-main.txt b/MkpWIFI/build/main/warn-main.txt
new file mode 100644
index 0000000..372e1b0
--- /dev/null
+++ b/MkpWIFI/build/main/warn-main.txt
@@ -0,0 +1,32 @@
+
+This file lists modules PyInstaller was not able to find. This does not
+necessarily mean this module is required for running you program. Python and
+Python 3rd-party packages include a lot of conditional or optional module. For
+example the module 'ntpath' only exists on Windows, whereas the module
+'posixpath' only exists on Posix systems.
+
+Types if import:
+* top-level: imported at the top-level - look at these first
+* conditional: imported within an if-statement
+* delayed: imported from within a function
+* optional: imported within a try-except-statement
+
+IMPORTANT: Do NOT post this list to the issue-tracker. Use it as a basis for
+ yourself tracking down the missing module. Thanks!
+
+missing module named resource - imported by posix (top-level), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level)
+missing module named posix - imported by os (conditional, optional), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level)
+missing module named _posixsubprocess - imported by subprocess (conditional), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level)
+missing module named readline - imported by cmd (delayed, conditional, optional), code (delayed, conditional, optional), pdb (delayed, optional), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level)
+excluded module named _frozen_importlib - imported by importlib (optional), importlib.abc (optional), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level)
+missing module named _frozen_importlib_external - imported by importlib._bootstrap (delayed), importlib (optional), importlib.abc (optional), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level)
+missing module named _winreg - imported by platform (delayed, optional), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level)
+missing module named _scproxy - imported by urllib.request (conditional)
+missing module named java - imported by platform (delayed), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level)
+missing module named 'java.lang' - imported by platform (delayed, optional), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level), xml.sax._exceptions (conditional)
+missing module named vms_lib - imported by platform (delayed, conditional, optional), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level)
+missing module named termios - imported by tty (top-level), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level), getpass (optional)
+missing module named grp - imported by shutil (optional), tarfile (optional), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level)
+missing module named 'org.python' - imported by pickle (optional), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level), xml.sax (delayed, conditional)
+missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (optional), http.server (delayed, optional), webbrowser (delayed), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level), netrc (delayed, conditional), getpass (delayed)
+missing module named org - imported by copy (optional), C:\Users\Emanuele Trabattoni\Documents\workspace\MarkoprintWIFI\MkpWIFI\main.py (top-level)
diff --git a/MkpWIFI/build/main/xref-main.html b/MkpWIFI/build/main/xref-main.html
new file mode 100644
index 0000000..37463e0
--- /dev/null
+++ b/MkpWIFI/build/main/xref-main.html
@@ -0,0 +1,8563 @@
+
+
+ modulegraph cross reference for main.py, pyi_rth_qt5.py
+
+
+
+ modulegraph cross reference for main.py, pyi_rth_qt5.py
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
PyQt5.QtCore C:\Users\Emanuele Trabattoni\AppData\Roaming\Python\Python37\site-packages\PyQt5\QtCore.pyd
+
+
+
+
+
+
+
PyQt5.QtGui C:\Users\Emanuele Trabattoni\AppData\Roaming\Python\Python37\site-packages\PyQt5\QtGui.pyd
+
+
+
+
+
+
+
PyQt5.QtWidgets C:\Users\Emanuele Trabattoni\AppData\Roaming\Python\Python37\site-packages\PyQt5\QtWidgets.pyd
+
+
+
+
+
+
+
PyQt5.sip C:\Users\Emanuele Trabattoni\AppData\Roaming\Python\Python37\site-packages\PyQt5\sip.pyd
+
+imported by:
+
PyQt5
+
+
+
+
+
+
+
+
+
+
_abc (builtin module)
+
+
+
+
+
+
_ast (builtin module)
+
+
+
+
+
+
_bisect (builtin module)
+
+
+
+
+
+
_blake2 (builtin module)
+
+
+
+
+
+
+
+
_bz2 c:\program files\python37\DLLs\_bz2.pyd
+
+
+
+
+
+
_codecs (builtin module)
+
+
+
+
+
+
_codecs_cn (builtin module)
+
+
+
+
+
+
_codecs_hk (builtin module)
+
+
+
+
+
+
_codecs_iso2022 (builtin module)
+
+
+
+
+
+
_codecs_jp (builtin module)
+
+
+
+
+
+
_codecs_kr (builtin module)
+
+
+
+
+
+
_codecs_tw (builtin module)
+
+
+
+
+
+
_collections (builtin module)
+
+
+
+
+
+
+
+
+
+
+
+
_datetime (builtin module)
+
+
+
+
+
+
+
+
+
+
+
_functools (builtin module)
+
+
+
+
+
+
_hashlib c:\program files\python37\DLLs\_hashlib.pyd
+
+
+
+
+
+
_heapq (builtin module)
+
+
+
+
+
+
_imp (builtin module)
+
+
+
+
+
+
_io (builtin module)
+
+
+
+
+
+
_json (builtin module)
+
+
+
+
+
+
+
_locale (builtin module)
+
+
+
+
+
+
_lzma c:\program files\python37\DLLs\_lzma.pyd
+
+
+
+
+
+
_md5 (builtin module)
+
+
+
+
+
+
_multibytecodec (builtin module)
+
+
+
+
+
+
_opcode (builtin module)
+
+
+
+
+
+
_operator (builtin module)
+
+
+
+
+
+
_pickle (builtin module)
+
+
+
+
+
+
+
+
+
+
+
_random (builtin module)
+
+
+
+
+
+
+
+
_sha1 (builtin module)
+
+
+
+
+
+
_sha256 (builtin module)
+
+
+
+
+
+
_sha3 (builtin module)
+
+
+
+
+
+
_sha512 (builtin module)
+
+
+
+
+
+
_signal (builtin module)
+
+
+
+
+
+
_socket c:\program files\python37\DLLs\_socket.pyd
+
+
+
+
+
+
_sre (builtin module)
+
+
+
+
+
+
+
_ssl c:\program files\python37\DLLs\_ssl.pyd
+
+
+
+
+
+
+
_stat (builtin module)
+
+
+
+
+
+
_string (builtin module)
+
+
+
+
+
+
+
+
_struct (builtin module)
+
+
+
+
+
+
_thread (builtin module)
+
+
+
+
+
+
+
+
_tracemalloc (builtin module)
+
+
+
+
+
+
_warnings (builtin module)
+
+
+
+
+
+
_weakref (builtin module)
+
+
+
+
+
+
+
+
_winapi (builtin module)
+
+
+
+
+
+
+
+
abc
+
SourceModule
+
+
+
+
+
+
+
+
+
ast
+
SourceModule
+
+
+
+
+
+
+
atexit (builtin module)
+
+
+
+
+
+
base64
+
SourceModule
+
+
+
+
+
+
+
bdb
+
SourceModule
+
+
+
+
+
+
+
binascii (builtin module)
+
+
+
+
+
+
bisect
+
SourceModule
+
+
+
+
+
+
+
builtins (builtin module)
+
+
+
+
+
+
bz2
+
SourceModule
+
+
+
+
+
+
+
+
+
cmd
+
SourceModule
+
+
+
+
+
+
+
code
+
SourceModule
+
+
+
+
+
+
+
codecs
+
SourceModule
+
+
+
+
+
+
+
codeop
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
copy
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
dis
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
enum
+
SourceModule
+
+
+
+
+
+
+
errno (builtin module)
+
+
+
+
+
+
+
+
ftplib
+
SourceModule
+
+
+
+
+
+
+
+
+
gc (builtin module)
+
+
+
+
+
+
+
+
+
getopt
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
glob
+
SourceModule
+
+
+
+
+
+
+
grp
+
MissingModule
+
+
+
+
+
+
gzip
+
SourceModule
+
+
+
+
+
+
+
+
+
heapq
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
io
+
SourceModule
+
+
+
+
+
+
+
itertools (builtin module)
+
+
+
+
+
+
java
+
MissingModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
locale
+
SourceModule
+
+
+
+
+
+
+
+
+
lzma
+
SourceModule
+
+
+
+
+
+
+
marshal (builtin module)
+
+
+
+
+
+
math (builtin module)
+
+
+
+
+
+
+
+
msvcrt (builtin module)
+
+
+
+
+
+
netrc
+
SourceModule
+
+
+
+
+
+
+
nt (builtin module)
+
+
+
+
+
+
ntpath
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
opcode
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
org
+
MissingModule
+
+
+
+
+
+
os
+
SourceModule
+
+
+
+
+
+
+
pdb
+
SourceModule
+
+
+
+
+
+
+
pickle
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
posix
+
MissingModule
+
+
+
+
+
+
+
+
+
pprint
+
SourceModule
+
+
+
+
+
+
+
pwd
+
MissingModule
+
+
+
+
+
+
+
+
pydoc
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
pyexpat c:\program files\python37\DLLs\pyexpat.pyd
+
+
+
+
+
+
quopri
+
SourceModule
+
+
+
+
+
+
+
random
+
SourceModule
+
+
+
+
+
+
+
re
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
runpy
+
SourceModule
+
+
+
+
+
+
+
select c:\program files\python37\DLLs\select.pyd
+
+
+
+
+
+
+
+
shlex
+
SourceModule
+
+
+
+
+
+
+
shutil
+
SourceModule
+
+
+
+
+
+
+
signal
+
SourceModule
+
+
+
+
+
+
+
socket
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
ssl
+
SourceModule
+
+
+
+
+
+
+
stat
+
SourceModule
+
+
+
+
+
+
+
string
+
SourceModule
+
+
+
+
+
+
+
+
+
struct
+
SourceModule
+
+
+
+
+
+
+
+
+
sys (builtin module)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
time (builtin module)
+
+
+
+
+
+
+
token
+
SourceModule
+imports:
+
re
+ •
sys
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
tty
+
SourceModule
+
+
+
+
+
+
+
types
+
SourceModule
+
+
+
+
+
+
+
typing
+
SourceModule
+
+
+
+
+
+
+
unicodedata c:\program files\python37\DLLs\unicodedata.pyd
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
uu
+
SourceModule
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
winreg (builtin module)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
zipimport (builtin module)
+
+
+
+
+
+
+
zlib (builtin module)
+
+
+
+
+
diff --git a/MkpWIFI/conf.json b/MkpWIFI/conf.json
new file mode 100644
index 0000000..6491008
--- /dev/null
+++ b/MkpWIFI/conf.json
@@ -0,0 +1,21 @@
+{
+ "ip":"10.10.100.254",
+ "port": 8899,
+ "name":"MKPsouplesse",
+ "autoconnect":true,
+ "keepalive":5000,
+ "timeout": 0.5,
+ "inkstat" : 2,
+ "printcmd": {
+ "filename":"TM1.00I",
+ "dateformat": "%d%m%y-",
+ "handshake" : "*",
+ "printmode" : "11",
+ "headstatus" : [
+ "ink", "htmr", "iuse", "xclk", "bat",
+ "txt", "pause", "headOk", "headTyp",
+ "labelCnt", "ztv", "cp", "lx", "exInk",
+ "scStat", "inkStat"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/MkpWIFI/dist/conf.json b/MkpWIFI/dist/conf.json
new file mode 100644
index 0000000..92c2905
--- /dev/null
+++ b/MkpWIFI/dist/conf.json
@@ -0,0 +1,14 @@
+{
+ "ip":"192.168.1.1",
+ "port": 10200,
+ "name":"MKPsouplesse",
+ "autoconnect":true,
+ "keepalive":5000,
+ "timeout": 0.5,
+ "printcmd": {
+ "filename":"TM1.00I",
+ "dateformat": "%d%m%y-",
+ "handshake" : "*",
+ "printmode" : "11"
+ }
+}
\ No newline at end of file
diff --git a/MkpWIFI/dist/main.exe b/MkpWIFI/dist/main.exe
new file mode 100644
index 0000000..e9712e5
Binary files /dev/null and b/MkpWIFI/dist/main.exe differ
diff --git a/MkpWIFI/main.py b/MkpWIFI/main.py
new file mode 100644
index 0000000..016efd2
--- /dev/null
+++ b/MkpWIFI/main.py
@@ -0,0 +1,190 @@
+'''
+Created on 8 apr 2019
+
+@author: Emanuele Trabattoni
+'''
+
+import sys
+import time
+import datetime
+import socket
+import json
+import PyQt5.QtWidgets
+from MkpWIFI.MKPrint_GUI import Ui_MainWindow
+
+
+class main(PyQt5.QtWidgets.QMainWindow):
+
+ def __init__(self):
+ PyQt5.QtWidgets.QMainWindow.__init__(self)
+ self.ui = Ui_MainWindow()
+ self.ui.setupUi(self)
+ self.setFixedSize(self.maximumSize())
+ self.setWindowTitle("Manda Etichette a Marcatrice")
+
+ self.inkStatCounter = 0
+ self.printer = None
+ self.headStatus = dict()
+ self.connected = False
+ self.sending = False
+ self.timer = PyQt5.QtCore.QTimer()
+
+ self.ui.btn_connect.clicked.connect(self.connetti)
+ self.ui.btn_upload.clicked.connect(self.upload)
+
+ self.ui.btn_upload.setEnabled(False)
+ self.ui.rad_dataOn.setChecked(True)
+
+ self.ui.prg_inkLevel.setTextVisible(True)
+
+ try:
+ self.setFile = open("conf.json", "r")
+ self.settings = json.load(self.setFile)
+ self.data = self.settings["printcmd"]
+ except FileNotFoundError as e:
+ print("Configuration file error: {}".format(e))
+ sys.exit(1)
+ pass
+
+ def connetti(self):
+ if not self.connected:
+ if self.printer is None:
+ try:
+ self.printer = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
+ self.printer.connect((self.settings["ip"], self.settings["port"]))
+ self.printer.settimeout(0.5)
+ self.ui.btn_connect.setText("DISCONNETTI")
+ self.ui.lbl_stat.setText("Connesso")
+ self.ui.btn_upload.setEnabled(True)
+ self.connected = True
+ self.status()
+ self.timer.start(self.settings["keepalive"])
+ self.timer.timeout.connect(self.keepalive)
+ except socket.error as e :
+ print ("Connessione Fallita: {}".format(e))
+ self.printer = None
+ self.connected = False
+ pass
+ else:
+ self.disconnetti()
+ pass
+ pass
+
+ def disconnetti(self):
+ if self.connected:
+ self.timer.stop()
+ self.connected = False
+ self.ui.btn_connect.setText("CONNETTI")
+ self.ui.lbl_stat.setText("Disconnesso")
+ self.printer.close()
+ self.printer = None
+ pass
+
+ def upload(self):
+ self.sending=True
+ if self.connected:
+ if self.ui.rad_dataOn.isChecked():
+ date = datetime.datetime.now()
+ date = date.strftime(self.data["dateformat"])
+ else:
+ date = ""
+
+ cmdstr = "\x02TZ" + self.data["filename"] + ";" + self.data["printmode"] + "\r"
+ descr = str(self.ui.txt_descr.toPlainText()).capitalize()
+ print(bytearray(descr,"ascii"))
+ descr = descr.replace("\n", "\t")
+ datastr = str(self.ui.txt_model.text()).upper() + "\r" + \
+ date + descr + "\r"
+ outstr = cmdstr + datastr + "\03\r"
+ self.printer.settimeout(1.0)
+ try:
+ self.printer.send(bytearray(outstr, "ascii"))
+ retval = self.printer.recv(1)
+ print("ACK: ", retval)
+ if retval == b'\x06':
+ retval = self.printer.recv(6)
+ if retval == b'\x021OK\x03':
+ print("RESP: ", retval)
+ self.ui.lbl_stat.setText("Invio Riuscito!")
+ print("Printer OK")
+ else:
+ self.ui.lbl_stat.setText("Invio Fallito!")
+ print("Printer Error")
+ else:
+ print("Send Error")
+ self.printer.settimeout(0.5)
+
+ self.status()
+
+ if self.headStatus["ink"] == 2:
+ self.ui.lbl_stat.setText("CARTUCCIA ESAURITA\nSostituire!")
+ elif self.headStatus["ink"] == 1:
+ self.ui.lbl_stat.setText("Cartuccia in Esaurimento")
+
+ except socket.error as e:
+ print("Socket error: ", e)
+ self.printer.settimeout(0.5)
+ self.ui.lbl_stat.setText("Invio Fallito!")
+ self.printer.sendall(b"\r"*5)
+ self.printer.recv(5)
+ self.sending = False
+ pass
+
+
+ def keepalive(self):
+ if not self.sending:
+ print ("Keepalive")
+ if self.connected:
+ try:
+ self.printer.send(b"\x1B*\r")
+ print(str(self.printer.recv(5)))
+ self.ui.lbl_stat.setText("Connesso")
+ if self.inkStatCounter <= self.settings["inkstat"]:
+ self.inkStatCounter +=1
+ else:
+ self.status()
+ self.inkStatCounter = 0
+ except:
+ self.disconnetti()
+ else:
+ self.ui.lbl_stat.setText("Disconnesso")
+ pass
+
+ def status(self):
+ if self.connected:
+ try:
+ self.printer.send(b"\x1BS1\r")
+ time.sleep(1)
+ c = self.printer.recv(1)
+ inData = b""
+ while c != b"\r":
+ inData += c
+ if len(inData) > 200:
+ print("Status Message Length Error")
+ raise
+ c=self.printer.recv(1)
+ inData = str(inData,"ascii")
+ inData = inData.split(":")
+ for val in enumerate(self.data["headstatus"]):
+ if val[1] != "txt":
+ self.headStatus[val[1]] = int(inData[val[0]])
+ else:
+ self.headStatus[val[1]] = str(inData[val[0]])
+ print("Status: {}".format(self.headStatus))
+ self.ui.prg_inkLevel.setValue(self.headStatus["iuse"])
+ self.ui.lcd_printCount.display(str(self.headStatus["labelCnt"]))
+ except:
+ print("Status retreive error!")
+ pass
+
+ def quit(self):
+ pass
+
+if __name__ == '__main__':
+ app = PyQt5.QtWidgets.QApplication(sys.argv)
+ window = main()
+ window.show()
+ sys.exit(app.exec_())
+ pass
+
+
diff --git a/MkpWIFI/main.spec b/MkpWIFI/main.spec
new file mode 100644
index 0000000..b1e1806
--- /dev/null
+++ b/MkpWIFI/main.spec
@@ -0,0 +1,32 @@
+# -*- mode: python -*-
+
+block_cipher = None
+
+
+a = Analysis(['main.py'],
+ pathex=['C:\\Users\\Emanuele Trabattoni\\Documents\\workspace\\MarkoprintWIFI\\MkpWIFI'],
+ binaries=[],
+ datas=[],
+ hiddenimports=[],
+ hookspath=[],
+ runtime_hooks=[],
+ excludes=[],
+ win_no_prefer_redirects=False,
+ win_private_assemblies=False,
+ cipher=block_cipher,
+ noarchive=False)
+pyz = PYZ(a.pure, a.zipped_data,
+ cipher=block_cipher)
+exe = EXE(pyz,
+ a.scripts,
+ a.binaries,
+ a.zipfiles,
+ a.datas,
+ [],
+ name='main',
+ debug=False,
+ bootloader_ignore_signals=False,
+ strip=False,
+ upx=True,
+ runtime_tmpdir=None,
+ console=True )
diff --git a/MkpWIFI/mkpwifi_ui.ui b/MkpWIFI/mkpwifi_ui.ui
new file mode 100644
index 0000000..77fe626
--- /dev/null
+++ b/MkpWIFI/mkpwifi_ui.ui
@@ -0,0 +1,432 @@
+
+
+ MainWindow
+
+
+
+ 0
+ 0
+ 700
+ 360
+
+
+
+
+ 0
+ 0
+
+
+
+
+ 700
+ 360
+
+
+
+ MainWindow
+
+
+ QTabWidget::Rounded
+
+
+
+ -
+
+
-
+
+
-
+
+
+
+ 0
+ 0
+
+
+
+
+ 125
+ 0
+
+
+
+
+ 14
+
+
+
+ MODELLO
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 200
+ 0
+
+
+
+
+ 14
+
+
+
+ 8
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+ -
+
+
-
+
+
+
+ 70
+ 0
+
+
+
+
+ 14
+
+
+
+ DATA
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 14
+
+
+
+ SI
+
+
+
+ -
+
+
+
+ 14
+
+
+
+ NO
+
+
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+
+
+ -
+
+
+
+ 16
+
+
+
+ -
+
+
+ Qt::AlignCenter
+
+
+
+ -
+
+
+
+ 12
+
+
+
+ QFrame::NoFrame
+
+
+ QFrame::Plain
+
+
+ true
+
+
+ 4
+
+
+ 0
+
+
+
+ -
+
+
+
+ 25
+ 0
+
+
+
+
+ 12
+ true
+
+
+
+ 10
+
+
+ true
+
+
+ Qt::Horizontal
+
+
+ false
+
+
+ %p%
+
+
+
+ -
+
+
+
+ 0
+ 50
+
+
+
+
+ 14
+
+
+
+ CARICA
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ -
+
+
+
+ 0
+ 50
+
+
+
+
+ 14
+
+
+
+ CONNETTI
+
+
+
+ -
+
+
+
+ 16777215
+ 180
+
+
+
+
+ 14
+
+
+
+ Livello Inchiostro
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ -
+
+
+
+ 16777215
+ 180
+
+
+
+
+ 14
+
+
+
+ N° Stampe Etichetta
+
+
+
+ -
+
+
-
+
+
+
+ 0
+ 0
+
+
+
+
+ 125
+ 0
+
+
+
+
+ 125
+ 150
+
+
+
+
+ 14
+
+
+
+ DESCRIZIONE
+
+
+
+ -
+
+
+
+ 0
+ 0
+
+
+
+
+ 16777215
+ 150
+
+
+
+
+ 14
+
+
+
+ Qt::ScrollBarAlwaysOff
+
+
+ Qt::ScrollBarAlwaysOff
+
+
+ QAbstractScrollArea::AdjustToContents
+
+
+ false
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Salva
+
+
+
+
+ Carica
+
+
+
+
+ btn_connect
+ txt_model
+ rad_dataOn
+ txt_descr
+ btn_upload
+ rad_dataOff
+
+
+
+
diff --git a/MkpWIFI/msvcp90.dll b/MkpWIFI/msvcp90.dll
new file mode 100644
index 0000000..93cc3a7
Binary files /dev/null and b/MkpWIFI/msvcp90.dll differ