diff options
-rw-r--r-- | hypervideo_gui.py | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/hypervideo_gui.py b/hypervideo_gui.py index 4f4ef42..5587ef3 100644 --- a/hypervideo_gui.py +++ b/hypervideo_gui.py @@ -1,17 +1,28 @@ import sys import os import re +import threading +import json + +import hypervideo + +from PyQt5.QtWidgets import ( + QAction, + QApplication, + QComboBox, + QGridLayout, + QLabel, + QLineEdit, + QMainWindow, + QMessageBox, + QPushButton, + QWidget, +) -from PyQt5.QtWidgets import * -from PyQt5.QtGui import QIcon from PyQt5.QtCore import ( pyqtSlot, ) -import threading -import hypervideo -import json - __version__ = "0.1" __license__ = "GPL-3" |