crawler_channel_account_videos.py 433 B

123456789101112131415161718
  1. """
  2. @author: luojunhui
  3. @tool: pycharm && deepseek
  4. """
  5. from applications.db import DatabaseConnector
  6. from config import long_articles_config
  7. from coldStartTasks.crawler.channels import get_channel_account_videos
  8. class CrawlerChannelAccountVideos:
  9. """
  10. crawler channel account videos
  11. """
  12. def __init__(self):
  13. self.db_client = DatabaseConnector(db_config=long_articles_config)
  14. self.db_client.connect()