1. 首页
  2. 数据库
  3. 其它
  4. python通过http下载文件的方法详解

python通过http下载文件的方法详解

上传者: 2021-01-01 03:26:50上传 PDF文件 26.46KB 热度 11次
1、通过requests.get方法 r = requests.get(http://200.20.3.20:8080/job/Compile/job/aaa/496/artifact/bbb.iso) with open(os.path.join(os.path.dirname(os.path.abspath(__file__)),bbb.iso),wb) as f: f.write(r.content) 2、urllib2方法 import urllib2 print downloading with urllib2 url = 'http://200.21.
用户评论