0
0
mirror of https://github.com/python-LimeReport/examples.git synced 2024-12-23 15:53:00 +03:00
examples/simple-designReport/main.py

9 lines
202 B
Python

import sys
from PySide6.QtWidgets import QApplication
import LimeReport
if __name__ == "__main__":
app = QApplication([])
report = LimeReport.ReportEngine()
sys.exit(report.designReport())