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             # 队列
import requests
from lxml import etree
import os
import time


class 

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