BTSearcher/run.py
2018-04-22 18:48:48 +08:00

9 lines
145 B
Python

import sys
import ux
from PyQt5.QtWidgets import QApplication
app = QApplication(sys.argv)
search = ux.Ux()
search.show()
sys.exit(app.exec_())