摘要: python 实现远程连接,操作linux 1. 安装依赖 pip3 install paramiko 2. 实现原理 # -*- coding: utf-8 -*- import paramiko def connect(cmd, try_times=3): while True: try: # 阅读全文
posted @ 2022-12-21 09:43 tt_贝塔 阅读(127) 评论(0) 推荐(0) 编辑