12345678910 |
- """
- @author: luojunhui
- """
- from tasks.crawler_channel_account_videos import CrawlerChannelAccountVideos
- if __name__ == '__main__':
- crawler_channel_account_videos = CrawlerChannelAccountVideos()
- account_id_list = ['v2_060000231003b20faec8c7e38d1fc0d3c60deb3cb077785c69d8019608ba83ca1448711fce38@finder']
- for account_id in account_id_list:
- crawler_channel_account_videos.crawler_each_account(channel_account_id=account_id, channel_account_name="")
|