摘要: 1.urllib2在python3中已经没了,使用urllib3 相应代码也要做更改 原代码 : response = urllib2.urlopen(url) data = response.read() 改为 http = urllib3.PoolManager()response = http 阅读全文
posted @ 2020-04-13 16:59 天冰老冰棍 阅读(363) 评论(0) 推荐(0)