多进程爬虫
摘要:
import requests from multiprocessing import Pool import re from requests.exceptions import RequestException import json def get_one_page(url): try: res = requests.get(url) if res... 阅读全文
posted @ 2019-06-26 15:44 ||子义 阅读(133) 评论(0) 推荐(0) 编辑