def put(self, path, params=None, body=None):
if body:
return requests.put(self.endpoint + path, params=params, data=body, headers=self.headers,
verify=False)
else:
return requests.put(self.endpoint + path, params=params, headers=self.headers, verify=False)
client.py 文件源码
python
阅读 28
收藏 0
点赞 0
评论 0
评论列表
文章目录