python 爬虫 睡不着觉听音频 全站爬取所有音频内容

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time    : 2020/11/27 18:33
# @Author  : huni
# @File    : 全站音频.py
# @Software: PyCharm

from threading import Thread        #多线程的包
from queue import Queue             #队列
import requests
from lxml import etree
import os


class CrawlInfo

你可能感兴趣的:(爬虫,队列,多线程,python,thread,xml)