资源简介

python爬虫批量下载apk文件,python爬虫批量下载apk文件,python爬虫批量下载apk文件,python爬虫批量下载apk文件,python爬虫批量下载apk文件

资源截图

代码片段和文件信息

import threading
import queue
import re
import urllib.request
import urllib.error

#namequeue=queue.Queue()
#linkqueue=queue.Queue()

headers=(“User-Agent““Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML like Gecko) Chrome/50.0.2661.102 Safari/537.36“)
opener=urllib.request.build_opener()
opener.addheaders=[headers]
urllib.request.install_opener(opener)

url = []
data = []
thr = [None for k in range(5)]
for i in range(16):
    url.append(“http://shouji.baidu.com/rank/top/list_“+str(i)+“.html“)
    data.append(urllib.request.urlopen(url[-1]).read().decode(“utf-8“))
#共享线程,处理url[i]数据
class downloadurl(threading.Thread):
    #def __init__(selfdatanamequeuelinkqueue):
    def __init__(selfdata):
        threading.Thread.__init__(self)
        self.data=dat

评论

共有 条评论