mirror of
https://github.com/python-LimeReport/examples.git
synced 2025-01-11 16:18:10 +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())
|