mirror of
https://github.com/NanmiCoder/MediaCrawler.git
synced 2026-09-21 19:28:12 +08:00
- KS_SPECIFIED_ID_LIST 换成两条 /f/<token> 分享短链,用于验证短链解析链路 - 注释补上第三种输入形式(分享短链),与 help.py 的解析实现保持一致
44 lines
1.8 KiB
Python
44 lines
1.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright (c) 2025 relakkes@gmail.com
|
|
#
|
|
# This file is part of MediaCrawler project.
|
|
# Repository: https://github.com/NanmiCoder/MediaCrawler/blob/main/config/ks_config.py
|
|
# GitHub: https://github.com/NanmiCoder
|
|
# Licensed under NON-COMMERCIAL LEARNING LICENSE 1.1
|
|
#
|
|
|
|
# 声明:本代码仅供学习和研究目的使用。使用者应遵守以下原则:
|
|
# 1. 不得用于任何商业用途。
|
|
# 2. 使用时应遵守目标平台的使用条款和robots.txt规则。
|
|
# 3. 不得进行大规模爬取或对平台造成运营干扰。
|
|
# 4. 应合理控制请求频率,避免给目标平台带来不必要的负担。
|
|
# 5. 不得用于任何非法或不当的用途。
|
|
#
|
|
# 详细许可条款请参阅项目根目录下的LICENSE文件。
|
|
# 使用本代码即表示您同意遵守上述原则和LICENSE中的所有条款。
|
|
|
|
# Kuaishou platform configuration
|
|
|
|
# Specify Kuaishou video URL list (supports complete URL or pure ID)
|
|
# Supported formats:
|
|
# 1. Full video URL: "https://www.kuaishou.com/short-video/3x3zxz4mjrsc8ke?authorId=3x84qugg4ch9zhs&streamSource=search"
|
|
# 2. Pure video ID: "3xf8enb8dbj6uig"
|
|
# 3. Share short link: "https://www.kuaishou.com/f/X9Idt15MQb9L2cv"
|
|
# (路径里是 share_token 不是视频 ID,会自动跟随 302 重定向解析)
|
|
KS_SPECIFIED_ID_LIST = [
|
|
"https://www.kuaishou.com/f/X9Idt15MQb9L2cv",
|
|
"https://www.kuaishou.com/f/X-a8vLyTxvEvN2jg",
|
|
"a8vLyTxvEvN2jg",
|
|
# ........................
|
|
]
|
|
|
|
# Specify Kuaishou creator URL list (supports full URL or pure ID)
|
|
# Supported formats:
|
|
# 1. Creator homepage URL: "https://www.kuaishou.com/profile/3x84qugg4ch9zhs"
|
|
# 2. Pure user_id: "3x4sm73aye7jq7i"
|
|
KS_CREATOR_ID_LIST = [
|
|
"https://www.kuaishou.com/profile/3xf79edg9msa85c",
|
|
"3x4sm73aye7jq7i",
|
|
# ........................
|
|
]
|