Inicial, descargar y conversion basicas

This commit is contained in:
2026-08-27 14:38:59 +02:00
commit b05ea516ee
11 changed files with 611 additions and 0 deletions

9
main.py Normal file
View File

@@ -0,0 +1,9 @@
import sys
from PyQt6.QtWidgets import QApplication
from gui.main_window import MainWindow
if __name__ == "__main__":
app = QApplication(sys.argv)
window = MainWindow()
window.show()
sys.exit(app.exec())