1234567891011121314151617 |
- """
- @author: luojunhui
- """
- from tasks.crawler_channel_account_videos import CrawlerChannelAccountVideos
- if __name__ == '__main__':
- crawler_channel_account_videos = CrawlerChannelAccountVideos()
- account_id_list = [
- 'v2_060000231003b20faec8c5e38d1bc6d7cd01e930b077a7294dd130db4fa94d2d12704ea0f716@finder',
- 'v2_060000231003b20faec8cae08c1fc3ddcd0ceb35b077762053df644e5f2399c325ad91bb8560@finder'
- ]
- for account_id in account_id_list:
- try:
- crawler_channel_account_videos.crawler_each_account(channel_account_id=account_id, channel_account_name="")
- except Exception as e:
- continue
|