python 爬虫 多页数据爬取多线程爬取案例

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time    : 2020/11/24 18:33
# @Author  : huni
# @File    : 多线程+多页爬).py
# @Software: PyCharm

from threading import Thread        #多线程的包
from queue import Queue             #队列
from fake_useragent import UserAgent    #模拟请求头的包,可用可不用,我这里没用,自己写的headers
import requests
from

你可能感兴趣的:(爬虫,队列,乱码,多线程,python,xpath)