""" @author: luojunhui @description: try to get some more accounts """ from tasks.crawler_accounts_by_association import ChannelAccountCrawler from tasks.crawler_accounts_by_association import ToutiaoAccountCrawler if __name__ == '__main__': # crawler channels channel_account_crawler = ChannelAccountCrawler() channel_account_crawler.deal() # crawler toutiao toutiao_crawler = ToutiaoAccountCrawler() toutiao_crawler.deal()