| import asyncio |
| from pathlib import Path |
|
|
| from conf import BASE_DIR |
| from uploader.douyin_uploader.main import DouYinVideo |
| from uploader.ks_uploader.main import KSVideo |
| from uploader.tencent_uploader.main import TencentVideo |
| from uploader.xiaohongshu_uploader.main import XiaoHongShuVideo |
| from utils.constant import TencentZoneTypes |
| from utils.files_times import generate_schedule_time_next_day |
|
|
|
|
| def post_video_tencent(title,files,tags,account_file,category=TencentZoneTypes.LIFESTYLE.value,enableTimer=False,videos_per_day = 1, daily_times=None,start_days = 0, is_draft=False): |
| |
| account_file = [Path(BASE_DIR / "cookiesFile" / file) for file in account_file] |
| files = [Path(BASE_DIR / "videoFile" / file) for file in files] |
| if enableTimer: |
| publish_datetimes = generate_schedule_time_next_day(len(files), videos_per_day, daily_times,start_days) |
| else: |
| publish_datetimes = [0 for i in range(len(files))] |
| for index, file in enumerate(files): |
| for cookie in account_file: |
| print(f"文件路径{str(file)}") |
| |
| print(f"视频文件名:{file}") |
| print(f"标题:{title}") |
| print(f"Hashtag:{tags}") |
| app = TencentVideo(title, str(file), tags, publish_datetimes[index], cookie, category, is_draft) |
| asyncio.run(app.main(), debug=False) |
|
|
|
|
| def post_video_DouYin(title,files,tags,account_file,category=TencentZoneTypes.LIFESTYLE.value,enableTimer=False,videos_per_day = 1, daily_times=None,start_days = 0, |
| thumbnail_path = '', |
| productLink = '', productTitle = ''): |
| |
| account_file = [Path(BASE_DIR / "cookiesFile" / file) for file in account_file] |
| files = [Path(BASE_DIR / "videoFile" / file) for file in files] |
| if enableTimer: |
| publish_datetimes = generate_schedule_time_next_day(len(files), videos_per_day, daily_times,start_days) |
| else: |
| publish_datetimes = [0 for i in range(len(files))] |
| for index, file in enumerate(files): |
| for cookie in account_file: |
| print(f"文件路径{str(file)}") |
| |
| print(f"视频文件名:{file}") |
| print(f"标题:{title}") |
| print(f"Hashtag:{tags}") |
| app = DouYinVideo(title, str(file), tags, publish_datetimes[index], cookie, thumbnail_path, productLink, productTitle) |
| asyncio.run(app.main(), debug=False) |
|
|
|
|
| def post_video_ks(title,files,tags,account_file,category=TencentZoneTypes.LIFESTYLE.value,enableTimer=False,videos_per_day = 1, daily_times=None,start_days = 0): |
| |
| account_file = [Path(BASE_DIR / "cookiesFile" / file) for file in account_file] |
| files = [Path(BASE_DIR / "videoFile" / file) for file in files] |
| if enableTimer: |
| publish_datetimes = generate_schedule_time_next_day(len(files), videos_per_day, daily_times,start_days) |
| else: |
| publish_datetimes = [0 for i in range(len(files))] |
| for index, file in enumerate(files): |
| for cookie in account_file: |
| print(f"文件路径{str(file)}") |
| |
| print(f"视频文件名:{file}") |
| print(f"标题:{title}") |
| print(f"Hashtag:{tags}") |
| app = KSVideo(title, str(file), tags, publish_datetimes[index], cookie) |
| asyncio.run(app.main(), debug=False) |
|
|
| def post_video_xhs(title,files,tags,account_file,category=TencentZoneTypes.LIFESTYLE.value,enableTimer=False,videos_per_day = 1, daily_times=None,start_days = 0): |
| |
| account_file = [Path(BASE_DIR / "cookiesFile" / file) for file in account_file] |
| files = [Path(BASE_DIR / "videoFile" / file) for file in files] |
| file_num = len(files) |
| if enableTimer: |
| publish_datetimes = generate_schedule_time_next_day(file_num, videos_per_day, daily_times,start_days) |
| else: |
| publish_datetimes = 0 |
| for index, file in enumerate(files): |
| for cookie in account_file: |
| |
| print(f"视频文件名:{file}") |
| print(f"标题:{title}") |
| print(f"Hashtag:{tags}") |
| app = XiaoHongShuVideo(title, file, tags, publish_datetimes, cookie) |
| asyncio.run(app.main(), debug=False) |
|
|
|
|
|
|
| |
| |