2023年11月14日

摘要: import pymysql class HandleMysql: def __init__(self, host, user, password, db, port): self.conn = pymysql.connect(host=host, user=user, password=passw 阅读全文
posted @ 2023-11-14 19:37 wolun666 阅读(10) 评论(0) 推荐(0) 编辑
 
摘要: import paramiko class HandleSSH: def __init__(self, ssh_ip=None, ssh_port=None, ssh_user="", ssh_password=""): self.ssh_ip = ssh_ip self.ssh_port = ss 阅读全文
posted @ 2023-11-14 17:18 wolun666 阅读(15) 评论(0) 推荐(0) 编辑