摘要: 服务器与服务器之间的交互 import os import socket import hmac key = '芝麻开门' def auth(x,y): hm = hmac.new(x,y) res = hm.hexdigest() return res sk = socket.socket() s 阅读全文
posted @ 2020-09-17 21:57 正在学Python 阅读(157) 评论(0) 推荐(0) 编辑