|  | @@ -187,7 +187,6 @@ class ZhongQingKanDianRecommend:
 | 
	
		
			
				|  |  |                  self.LocalLog.info(f"开始推荐视频列表的请求和处理流程,今日已爬推荐 {self.download_cnt} 个视频")
 | 
	
		
			
				|  |  |                  recommend_resp = self.req_recommend_list()
 | 
	
		
			
				|  |  |                  if not recommend_resp:
 | 
	
		
			
				|  |  | -                    time.sleep(random.randint(5, 10))
 | 
	
		
			
				|  |  |                      continue
 | 
	
		
			
				|  |  |                  recommend_list = recommend_resp.get("data", {}).get("data", [])
 | 
	
		
			
				|  |  |                  self.LocalLog.info(f"获取的推荐列表长度:{len(recommend_list)}")
 | 
	
	
		
			
				|  | @@ -202,8 +201,8 @@ class ZhongQingKanDianRecommend:
 | 
	
		
			
				|  |  |                          continue
 | 
	
		
			
				|  |  |                      # 当前内容id保存到redis
 | 
	
		
			
				|  |  |                      self.redis_ops.save_recommend_video(content_id)
 | 
	
		
			
				|  |  | -                    time.sleep(random.randint(5, 10))
 | 
	
		
			
				|  |  |                      self.req_detail(content_link, **video_obj)
 | 
	
		
			
				|  |  | +                    time.sleep(random.randint(5, 30))
 | 
	
		
			
				|  |  |              except Exception as e:
 | 
	
		
			
				|  |  |                  tb_info = traceback.format_exc()
 | 
	
		
			
				|  |  |                  self.aliyun_log.logging(
 | 
	
	
		
			
				|  | @@ -234,7 +233,6 @@ class ZhongQingKanDianRecommend:
 | 
	
		
			
				|  |  |              our_user = random.choice(self.user_list)
 | 
	
		
			
				|  |  |              trace_id = self.platform + str(uuid.uuid1())
 | 
	
		
			
				|  |  |              item = VideoItem()
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |              account_id = video_obj["channel_account_id"]
 | 
	
		
			
				|  |  |              account_name = video_obj["channel_account_name"]
 | 
	
		
			
				|  |  |              account_avatar = video_obj["avatar"]
 |