mediaInfoSama/main.py
cuissedemouche 7cc07c2657 Basic and advanced tab
First commit of the app
Basic and advanced tab can be generated via code to the QPlainTextEdit
2022-12-13 14:51:50 +00:00

11 lines
165 B
Python

import sys
from PySide6 import QtWidgets
from main_window import MainWindow
app = QtWidgets.QApplication(sys.argv)
window = MainWindow()
window.show()
app.exec()