Python3 接口自动化测试,HTTPS下载文件(GET方法和POST方法)
requests-pkcs12 · PyPI
python中如何使用requests模块下载文件并获取进度提示

1、GET方法
1.1、调用
    # 下载客户端(GET)
    def download_client_get(self, header_all):
        try:
            url = self.host + "/xxx/v1/xxx-module/download-client"
            getfile = Ge


















