0
0
mirror of https://github.com/python-LimeReport/examples.git synced 2025-01-11 16:18:10 +03:00
examples/simple-designReport/main.py

9 lines
202 B
Python
Raw Normal View History

2023-08-31 14:23:32 +03:00
import sys
from PySide6.QtWidgets import QApplication
import LimeReport
if __name__ == "__main__":
app = QApplication([])
report = LimeReport.ReportEngine()
sys.exit(report.designReport())