start_run_ybm.py 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. """
  2. 药帮忙 (YBM) 平台采集入口
  3. 使用 commons1 调度框架 —— 从内部 API 拉取任务,由 YbmCrawler 执行采集。
  4. """
  5. import random
  6. import time
  7. import re
  8. from datetime import datetime
  9. import requests
  10. from commons.scheduler import CrawlerScheduler
  11. from commons.Logger import get_spider_logger
  12. from commons.feishu_webhook import send_text, send_error_card
  13. from spiders.ybm.ybm_crawl import (
  14. YbmCrawler,
  15. PLATFORM_ID,
  16. YBM_DEVICE_ID,
  17. load_city_mapping,
  18. )
  19. logger = get_spider_logger("ybm_runner")
  20. PLATFORM_NAME = "药帮忙"
  21. IDLE_SECONDS_MIN = 180
  22. IDLE_SECONDS_MAX = 300
  23. def notify_result(task, crawl_count, success):
  24. """发送飞书通知"""
  25. try:
  26. drug_name = task.get("product_name", "")
  27. spec = task.get("product_specs", "") or ""
  28. spec_items = [item.strip() for item in re.split(r"[|、,,\n\r]+", spec) if item.strip()]
  29. display_spec = "、".join(spec_items)
  30. notice_time = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
  31. text_msg = (
  32. f"{notice_time} 通知:\n"
  33. f"平台: {PLATFORM_NAME}, 药品: {drug_name}, 品规: {display_spec}, 爬取数据: {crawl_count}条"
  34. )
  35. if success:
  36. send_text(text_msg)
  37. else:
  38. send_error_card(
  39. task_name=drug_name,
  40. err_msg=f"task_id={task.get('id')}, company_id={task.get('company_id')}, crawl_count={crawl_count}",
  41. mention_all=False,
  42. )
  43. except Exception as e:
  44. logger.warning("飞书通知发送失败:%s", e)
  45. def main_loop():
  46. """循环拉取任务并执行采集"""
  47. load_city_mapping()
  48. scheduler = CrawlerScheduler(YBM_DEVICE_ID, str(PLATFORM_ID))
  49. idle_seconds = random.randint(IDLE_SECONDS_MIN, IDLE_SECONDS_MAX)
  50. logger.info("药帮忙采集启动,每轮间隔 %s 秒", idle_seconds)
  51. while True:
  52. try:
  53. # 先同步上报心跳,确保服务器登记后再拉任务
  54. requests.post(
  55. scheduler.heartbeat_url,
  56. json={"platform": scheduler.platform, "username": scheduler.username},
  57. headers={'X-Crawler-Token': 'zhijiayun_crawler_2026'},
  58. timeout=5
  59. )
  60. scheduler.start()
  61. task = scheduler.get_task() or {}
  62. if not task:
  63. logger.info("%s 暂无任务,等待 %s 秒后重试", PLATFORM_NAME, idle_seconds)
  64. time.sleep(idle_seconds)
  65. continue
  66. logger.info("开始执行%s爬虫任务 task_id=%s", PLATFORM_NAME, task.get("id"))
  67. crawler = YbmCrawler(task)
  68. crawl_count, is_success = crawler.run()
  69. logger.info("%s爬虫任务执行完成 task_id=%s count=%s success=%s",
  70. PLATFORM_NAME, task.get("id"), crawl_count, is_success)
  71. notify_result(task, crawl_count, is_success)
  72. except Exception as e:
  73. logger.error("%s 爬虫任务执行失败: %s", PLATFORM_NAME, e, exc_info=True)
  74. if __name__ == '__main__':
  75. main_loop()
  76. time.sleep(idle_seconds)