生产者消费者模式

import threading
import requests
from queue import Queue
import time
class Product(threading.Thread):
def init(self, i, page_queue):
#1.继承父类init:
super().init()
self.i = i
self.page_queue = page_queue

   ##2.覆写run方法:
def run(self):
    ##线程不能只干一个任务就退出,需要不断取任务:
    while True:
        ##任务停止条件:当任务队列为空的时候,线程退出
        if self.page_queue.empty():
            # print(f'===========任务耗时{end_time-start_time}==========')
            break
        try:
            q = self.page_queue.get(block=False)
            print(f'======{self.i}执行任务{q}===')

            url = f'https://careers.tencent.com/tencentcareer/api/post/Query?keyword=python&pageIndex={q}&pageSize=10'
            self.get_html(url)
            print(f'======{self.i}任务完成{q}===')
        except:
            pass


#一、请求
def get_html(self, url):
    header = {
        'user-agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.132 Safari/537.36'}
    response = requests.get(url=url, headers=header).json()
    response_q.put(response)

class Consumer(threading.Thread):
def init(self, j):
#1.继承父类init:
super().init()
self.j= j

   ##2.覆写run方法:
def run(self):
    ##线程不能只干一个任务就退出,需要不断取任务:
    while True:
        ##停止条件:(1)消费者任务队列为空(2)生产者线程都退出;
        if response_q.empty() and flag:
            break

        try:
            response = response_q.get(block=False)
            print(f'======{self.j}执行任务===')

            self.parse_html(response)
            print(f'======{self.j}任务完成===')
        except:
            pass

# 二、解析函数:
def parse_html(self, response):
    job_list = response['Data']['Posts']
    for job in job_list:
        # 工作名称:
        name = job['RecruitPostName']
        # 工作地点:
        address = job['LocationName']
        # 岗位职责:
        Responsibility = job['Responsibility']
        Responsibility = Responsibility.replace('\n', '').replace('\r', '')
        # 详情url:
        PostURL = job['PostURL']
        infor = f'工作名称:{name},工作地点:{address},岗位职责:{Responsibility},详情url:{PostURL}'

        with lock:
            with open('腾讯招聘.txt', 'a', encoding='utf-8')as fp:
                fp.write(infor + '\n')

lock = threading.Lock()
response_q = Queue()##消费者队列
flag = False #标志生产者线程是否全部都死了

if name == ‘main’:
start_time = time.time()
print(start_time)

##1.创建生产者队列:
page_queue = Queue()
for i in range(1, 10):
page_queue.put(i)

##2.起线程,完成任务;
product_name = [‘p1’, ‘p2’, ‘p3’]
consumer_name = [‘c1’, ‘c2’, ‘c3’]

p_tread = []
c_tread = []
##生产者线程:
for i in product_name:
    p_crawl = Product(i, page_queue)
    p_crawl.start()
    p_tread.append(p_crawl)
##消费者线程:
for j in consumer_name:
    c_crawl = Consumer(j)
    c_crawl.start()
    c_tread.append(c_crawl)

##生产者阻塞主线程:
for treadi in p_tread:
    treadi.join()

flag = True

##消费者阻塞主线程:
for treadi in c_tread:
    treadi.join()

end_time = time.time()
print(end_time-start_time)
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值