27 lines
602 B
Python
27 lines
602 B
Python
|
#!/usr/bin/python
|
||
|
|
||
|
"""
|
||
|
WikiCookBook
|
||
|
|
||
|
Easily enter recipes and export them to beautiful wiki pages.
|
||
|
|
||
|
2020 © Marcel Kapfer <opensource@mmk2410.org>
|
||
|
MIT License
|
||
|
"""
|
||
|
|
||
|
import sys
|
||
|
from PyQt5.QtWidgets import QApplication, QMainWindow
|
||
|
from ui_mainwindow import Ui_MainWindow
|
||
|
|
||
|
class MainWindow(QMainWindow, Ui_MainWindow):
|
||
|
def __init__(self, *args, **kwargs):
|
||
|
super(MainWindow, self).__init__(*args, **kwargs)
|
||
|
self.setupUi(self)
|
||
|
self.show()
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
app = QApplication([])
|
||
|
app.setApplicationName("WikiCookBook")
|
||
|
window = MainWindow()
|
||
|
app.exec_()
|