PyQt6 Python: запустить скрипт с помощью кнопки
Я хочу знать, как запустить этот скрипт python с PyQt6, фактический код показывает окно, и когда я его закрываю, он запускает второй код
нажмите кнопку >>>> hops.start (debug = True)
import ghhops_server as hs
from PyQt6.QtWidgets import QApplication, QWidget, QLineEdit, QPushButton, QTextEdit, QVBoxLayout
from PyQt6.QtGui import QIcon
class MyApp(QWidget):
def __init__(self):
super().__init__()
# appl = QApplication([])
appl = QApplication(sys.argv)
window = MyApp()
window.show()
appl.exec()
hops = hs.Hops()
@hops.component(
"/pointat",
name="PointAt",
description="Get point along curve",
icon="examples/pointat.png",
inputs=[
hs.HopsCurve("Curve", "C", "Curve to evaluate"),
hs.HopsNumber("t", "t", "Parameter on Curve to evaluate"),
],
outputs=[
hs.HopsPoint("P", "P", "Point on curve at t")
]
)
def pointat(curve, t):
return curve.PointAt(t)
if __name__ == "__main__":
hops.start(debug=True)