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-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-16 11:35:43 +00:00
|
|
|
parser.add_argument('--platform', type=str, help='Media platform select (xhs|dy)...', default=config.platform)
|
|
|
|
parser.add_argument('--keywords', type=str, help='Search note/page keywords...', default=config.keyword)
|
2023-06-22 14:43:26 +00:00
|
|
|
parser.add_argument('--lt', type=str, help='Login type (qrcode | phone | cookie)', default=config.login_type)
|
2023-06-16 11:35:43 +00:00
|
|
|
parser.add_argument('--phone', type=str, help='Login phone', default=config.login_phone)
|
2023-06-22 14:43:26 +00:00
|
|
|
parser.add_argument('--cookies', type=str, help='cookies to keep log in', default=config.cookies)
|
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(
|
|
|
|
keywords=args.keywords,
|
2023-06-16 11:35:43 +00:00
|
|
|
login_phone=args.phone,
|
2023-06-17 07:14:58 +00:00
|
|
|
login_type=args.lt,
|
2023-06-22 14:43:26 +00:00
|
|
|
cookie_str=args.cookies
|
2023-06-09 12:41:53 +00:00
|
|
|
)
|
|
|
|
await crawler.start()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
try:
|
|
|
|
asyncio.run(main())
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
sys.exit()
|