crawler_sph_video.py 649 B

1234567891011121314151617
  1. """
  2. @author: luojunhui
  3. """
  4. from tasks.crawler_channel_account_videos import CrawlerChannelAccountVideos
  5. if __name__ == '__main__':
  6. crawler_channel_account_videos = CrawlerChannelAccountVideos()
  7. account_id_list = [
  8. 'v2_060000231003b20faec8c5e38d1bc6d7cd01e930b077a7294dd130db4fa94d2d12704ea0f716@finder',
  9. 'v2_060000231003b20faec8cae08c1fc3ddcd0ceb35b077762053df644e5f2399c325ad91bb8560@finder'
  10. ]
  11. for account_id in account_id_list:
  12. try:
  13. crawler_channel_account_videos.crawler_each_account(channel_account_id=account_id, channel_account_name="")
  14. except Exception as e:
  15. continue