摘要: 小米应用商店的爬虫,提取各个App的下载链接。 源码: 1 # -*- coding: UTF-8 -*- 2 import requests 3 import csv 4 import queue 5 6 7 class XiaoMiShop(): 8 9 def __init__(self, c 阅读全文
posted @ 2021-03-01 10:58 BugMiaowu2021 阅读(377) 评论(0) 推荐(0) 编辑
摘要: 酷安应用商店的爬虫,提取各个App的下载链接。 源码: 1 # -*- coding: UTF-8 -*- 2 import requests 3 import queue 4 import threading 5 import re 6 from lxml import etree 7 impor 阅读全文
posted @ 2021-03-01 10:36 BugMiaowu2021 阅读(231) 评论(0) 推荐(0) 编辑