多进程爬虫
# 多进程爬虫
# 学习目标
- 掌握 multiprocessing模块的使用
- 了解 JoinableQueue的使用
在一个进程中无论开多少个线程都只能运行在一个CPU的核心之上,这是python的特点,不能说是缺点!
如果我们想利用计算机的多核心优势,就可以用多进程的方式实现,思路和多线程相似,只是对应的api不相同。
# 1 回顾多进程程的方法使用
from multiprocessing import Process #导入模块
t1 = Process(targe=func,args=(,)) #使用一个进程来执行一个函数
t1.daemon = True #设置为守护进程
t1.start() #此时线程才会启动
1
2
3
4
2
3
4
# 2 多进程中队列的使用
多进程中使用普通的队列模块会发生阻塞,对应的需要使用multiprocessing
提供的JoinableQueue
模块,其使用过程和在线程中使用的queue方法相同
# 3 具体实现
具体的实现如下:
import requests
from lxml import etree
from multiprocessing import Process
from multiprocessing import JoinableQueue as Queue
class QiubaiSpider:
def __init__(self):
self.url_temp = "https://www.qiushibaike.com/8hr/page/{}/"
self.headers = {"User-Agent":"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_3) \
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36"}
self.url_queue = Queue() #保存url
self.html_queue = Queue() #保存html字符串
self.content_queue = Queue() #保存提取到的数据
def get_url_list(self):
for i in range(1,14):
self.url_queue.put(self.url_temp.format(i))
def parse_url(self):
while True:
url = self.url_queue.get()
html_str = requests.get(url,headers=self.headers).content.decode()
self.html_queue.put(html_str)
self.url_queue.task_done()
def get_content_list(self):
while True:
html_str = self.html_queue.get()
html = etree.HTML(html_str)
div_list = html.xpath("//div[@id='content-left']/div")
content_list = []
for div in div_list:
content = {}
content["content"]=div.xpath(".//div[@class='content']/span/text()")
content_list.append(content)
self.content_queue.put(content_list)
self.html_queue.task_done()
def save_content_list(self):
while True:
content_list = self.content_queue.get()
for content in content_list:
print(content) # 此处对数据进行保存操作
self.content_queue.task_done()
def run(self):
process_list = []
#1. url_list
t_url = Process(target=self.get_url_list)
process_list.append(t_url)
#2. 遍历,发送请求
for i in range(5):#创建5个子进程
t_parse = Process(target=self.parse_url)
process_list.append(t_parse)
#3. 提取数据
t_content = Process(target=self.get_content_list)
process_list.append(t_content)
#4. 保存
t_save = Process(target=self.save_content_list)
process_list.append(t_save)
for t in process_list:
t.daemon=True #把进线程设置为守护线程,主进程技术,子进程结束
t.start()
for q in [self.url_queue,self.html_queue,self.content_queue]:
q.join() #让主进程阻塞
print("主进程结束")
if __name__ == '__main__':
qiubai = QiubaiSpider()
qiubai.run()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
上述多进程实现的代码中,multiprocessing提供的JoinableQueue可以创建可连接的共享进程队列。和普通的Queue对象一样,队列允许项目的使用者通知生产者项目已经被成功处理。通知进程是使用共享的信号和条件变量来实现的。 对应的该队列能够和普通队列一样能够调用task_done和join方法
# 小结
- multiprocessing导包:
from multiprocessing import Process
- 创建进程:
Process(target=self.get_url_list)
- 添加入队列:
put
- 从队列获取:
get
- 守护线程:
t.daemon=True
- 主线程阻塞:
q.join()
- 跨进程通讯可以使用
from multiprocessing import JoinableQueue as Queue
编辑 (opens new window)