Initial commit

This commit is contained in:
2025-07-04 19:26:39 +02:00
commit c8682d4801
248 changed files with 12519 additions and 0 deletions

View File

@ -0,0 +1,18 @@
"""
Entry point for our demo application.
Uses a "WindowManager" class holding the main window and the
CSV data manager used in it.
.. include:: documentation/includes/application.md
"""
from PySide6.QtWidgets import QApplication
from interface import WindowManager # look at interface/__init__.py
if __name__ == "__main__":
application = QApplication()
window_manager = WindowManager()
window_manager.show()
application.exec()