网络爬虫代码 # 编写第一个网络爬虫 from urllib3 import * from re import * http = PoolManager() disable_warnings() def download(url): result = http.request('GET'<