2023-06-09 12:41:53 +00:00
|
|
|
import sys
|
|
|
|
import asyncio
|
|
|
|
import argparse
|
|
|
|
|
2023-06-16 11:35:43 +00:00
|
|
|
import config
|
2023-06-27 15:38:30 +00:00
|
|
|
from tools import utils
|
|
|
|
from base import proxy_account_pool
|
2023-06-09 12:41:53 +00:00
|
|
|
from media_platform.douyin import DouYinCrawler
|
|
|
|
from media_platform.xhs import XiaoHongShuCrawler
|
|
|
|
|
|
|
|
|
|
|
|
class CrawlerFactory:
|
|
|
|
@staticmethod
|
|
|
|
def create_crawler(platform: str):
|
|
|
|
if platform == "xhs":
|
|
|
|
return XiaoHongShuCrawler()
|
|
|
|
elif platform == "dy":
|
|
|
|
return DouYinCrawler()
|
|
|
|
else:
|
|
|
|
raise ValueError("Invalid Media Platform Currently only supported xhs or douyin ...")
|
|
|
|
|
|
|
|
|
|
|
|
async def main():
|
|
|
|
# define command line params ...
|
|
|
|
parser = argparse.ArgumentParser(description='Media crawler program.')
|
2023-06-27 15:38:30 +00:00
|
|
|
parser.add_argument('--platform', type=str, help='Media platform select (xhs|dy)...', default=config.PLATFORM)
|
|
|
|
parser.add_argument('--lt', type=str, help='Login type (qrcode | phone | cookie)', default=config.LOGIN_TYPE)
|
|
|
|
|
|
|
|
# init account pool
|
|
|
|
account_pool = proxy_account_pool.create_account_pool()
|
2023-06-16 11:35:43 +00:00
|
|
|
|
2023-06-09 12:41:53 +00:00
|
|
|
args = parser.parse_args()
|
|
|
|
crawler = CrawlerFactory().create_crawler(platform=args.platform)
|
|
|
|
crawler.init_config(
|
2023-06-27 15:38:30 +00:00
|
|
|
command_args=args,
|
|
|
|
account_pool=account_pool
|
2023-06-09 12:41:53 +00:00
|
|
|
)
|
|
|
|
await crawler.start()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
try:
|
|
|
|
asyncio.run(main())
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
sys.exit()
|