太久没更新了,发一下随手写的两个小玩意
1.zstack任务取消工具
import sys
import requests
import json
from PyQt5.QtWidgets import QApplication, QWidget, QLabel, QLineEdit, QPushButton, QTextEdit, QVBoxLayout
class MyWindow(QWidget):
def __init__(self):
super().__init__()
self.initUI()
def initUI(self):
self.setWindowTitle('Zstack结束任务小工具')
self.setGeometry(300, 300, 400, 400)
layout = QVBoxLayout()
ip_label = QLabel('IP地址: 无需填写端口,默认500
各种教程·supo的文章
· 2023-09-09
· 2643 人浏览
admin