mirror of
https://github.com/python-LimeReport/examples.git
synced 2024-12-23 15:53:00 +03:00
9 lines
202 B
Python
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()) |