mirror of
https://github.com/imgyh/tiktok.git
synced 2025-04-05 12:50:20 +08:00
style(tiktok): 整理代码格式
This commit is contained in:
parent
48fcf902be
commit
064ae7dc63
@ -83,6 +83,7 @@ class TikTok(object):
|
||||
userVideoUrls.append(videoRealUrl)
|
||||
return userVideoUrls
|
||||
|
||||
|
||||
tk = TikTok()
|
||||
# tk.oneVideoInfo()
|
||||
tk.userVideoInfo()
|
||||
|
36
TikTok.py
36
TikTok.py
@ -71,7 +71,6 @@ class TikTok(object):
|
||||
# self.done_event = Event()
|
||||
# signal.signal(signal.SIGINT, self.handle_sigint)
|
||||
|
||||
|
||||
# 从分享链接中提取网址
|
||||
def getShareLink(self, string):
|
||||
# findall() 查找匹配正则表达式的字符串
|
||||
@ -145,7 +144,6 @@ class TikTok(object):
|
||||
|
||||
return key_type, key
|
||||
|
||||
|
||||
def getAwemeInfoApi(self, aweme_id):
|
||||
if aweme_id is None:
|
||||
return None
|
||||
@ -225,7 +223,6 @@ class TikTok(object):
|
||||
|
||||
return self.result.awemeDict, datadict
|
||||
|
||||
|
||||
def getUserInfoApi(self, sec_uid, mode="post", count=35, max_cursor=0):
|
||||
if sec_uid is None:
|
||||
return None
|
||||
@ -399,7 +396,8 @@ class TikTok(object):
|
||||
self.result.liveDict["cover"] = live_json['data']['data'][0]['cover']['url_list'][0]
|
||||
|
||||
# 头像
|
||||
self.result.liveDict["avatar"] = live_json['data']['data'][0]['owner']['avatar_thumb']['url_list'][0].replace("100x100", "1080x1080")
|
||||
self.result.liveDict["avatar"] = live_json['data']['data'][0]['owner']['avatar_thumb']['url_list'][0].replace(
|
||||
"100x100", "1080x1080")
|
||||
|
||||
# 观看人数
|
||||
self.result.liveDict["user_count"] = live_json['data']['data'][0]['user_count_str']
|
||||
@ -419,19 +417,20 @@ class TikTok(object):
|
||||
try:
|
||||
# 分区
|
||||
self.result.liveDict["partition"] = live_json['data']['partition_road_map']['partition']['title']
|
||||
self.result.liveDict["sub_partition"] = live_json['data']['partition_road_map']['sub_partition']['partition'][
|
||||
self.result.liveDict["sub_partition"] = \
|
||||
live_json['data']['partition_road_map']['sub_partition']['partition'][
|
||||
'title']
|
||||
except Exception as e:
|
||||
self.result.liveDict["partition"] = '无'
|
||||
self.result.liveDict["sub_partition"] = '无'
|
||||
|
||||
|
||||
flv = []
|
||||
|
||||
for i, f in enumerate(self.result.liveDict["flv_pull_url"].keys()):
|
||||
flv.append(f)
|
||||
|
||||
self.result.liveDict["flv_pull_url0"] = self.result.liveDict["flv_pull_url"][flv[0]].replace("http://", "https://")
|
||||
self.result.liveDict["flv_pull_url0"] = self.result.liveDict["flv_pull_url"][flv[0]].replace("http://",
|
||||
"https://")
|
||||
|
||||
return self.result.liveDict, live_json
|
||||
|
||||
@ -477,7 +476,8 @@ class TikTok(object):
|
||||
self.result.liveDict["cover"] = live_json['data']['data'][0]['cover']['url_list'][0]
|
||||
|
||||
# 头像
|
||||
self.result.liveDict["avatar"] = live_json['data']['data'][0]['owner']['avatar_thumb']['url_list'][0].replace("100x100", "1080x1080")
|
||||
self.result.liveDict["avatar"] = live_json['data']['data'][0]['owner']['avatar_thumb']['url_list'][0].replace(
|
||||
"100x100", "1080x1080")
|
||||
|
||||
# 观看人数
|
||||
self.result.liveDict["user_count"] = live_json['data']['data'][0]['user_count_str']
|
||||
@ -497,7 +497,8 @@ class TikTok(object):
|
||||
try:
|
||||
# 分区
|
||||
self.result.liveDict["partition"] = live_json['data']['partition_road_map']['partition']['title']
|
||||
self.result.liveDict["sub_partition"] = live_json['data']['partition_road_map']['sub_partition']['partition'][
|
||||
self.result.liveDict["sub_partition"] = \
|
||||
live_json['data']['partition_road_map']['sub_partition']['partition'][
|
||||
'title']
|
||||
except Exception as e:
|
||||
self.result.liveDict["partition"] = '无'
|
||||
@ -516,7 +517,8 @@ class TikTok(object):
|
||||
|
||||
rate = int(input('[ 🎬 ]输入数字选择推流清晰度:'))
|
||||
|
||||
self.result.liveDict["flv_pull_url0"] = self.result.liveDict["flv_pull_url"][flv[rate]].replace("http://", "https://")
|
||||
self.result.liveDict["flv_pull_url0"] = self.result.liveDict["flv_pull_url"][flv[rate]].replace("http://",
|
||||
"https://")
|
||||
|
||||
# 显示清晰度列表
|
||||
print('[ %s ]:%s' % (flv[rate], self.result.liveDict["flv_pull_url"][flv[rate]]))
|
||||
@ -544,7 +546,6 @@ class TikTok(object):
|
||||
if end - start > self.timeout:
|
||||
return None
|
||||
|
||||
|
||||
for aweme in datadict["aweme_list"]:
|
||||
|
||||
# 清空self.awemeDict
|
||||
@ -678,7 +679,6 @@ class TikTok(object):
|
||||
|
||||
return mixIdlist, datadict, datadict["cursor"], datadict["has_more"]
|
||||
|
||||
|
||||
def getUserAllMixInfo(self, sec_uid, count=35, number=0):
|
||||
print('[ 提示 ]:正在请求的用户 id = %s\r\n' % sec_uid)
|
||||
if sec_uid is None:
|
||||
@ -762,7 +762,6 @@ class TikTok(object):
|
||||
if end - start > self.timeout:
|
||||
return None
|
||||
|
||||
|
||||
for aweme in datadict["aweme_list"]:
|
||||
# 清空self.awemeDict
|
||||
self.result.clearDict(self.result.awemeDict)
|
||||
@ -1093,8 +1092,8 @@ class TikTok(object):
|
||||
# end = time.time() # 结束时间
|
||||
# print('\n' + '[下载完成]:耗时: %d分钟%d秒\n' % (int((end - start) / 60), ((end - start) % 60))) # 输出下载用时时间
|
||||
|
||||
|
||||
def userDownload(self, awemeList: list, music=True, cover=True, avatar=True, resjson=True, savePath=os.getcwd(), thread=5):
|
||||
def userDownload(self, awemeList: list, music=True, cover=True, avatar=True, resjson=True, savePath=os.getcwd(),
|
||||
thread=5):
|
||||
if awemeList is None:
|
||||
return
|
||||
if not os.path.exists(savePath):
|
||||
@ -1106,7 +1105,8 @@ class TikTok(object):
|
||||
start = time.time() # 开始时间
|
||||
|
||||
for aweme in awemeList:
|
||||
self.awemeDownload(awemeDict=aweme, music=music, cover=cover, avatar=avatar, resjson=resjson, savePath=savePath)
|
||||
self.awemeDownload(awemeDict=aweme, music=music, cover=cover, avatar=avatar, resjson=resjson,
|
||||
savePath=savePath)
|
||||
# time.sleep(0.5)
|
||||
wait(self.alltask, return_when=ALL_COMPLETED)
|
||||
|
||||
@ -1116,7 +1116,8 @@ class TikTok(object):
|
||||
self.isdwownload = True
|
||||
# 下载上一步失败的
|
||||
for aweme in awemeList:
|
||||
self.awemeDownload(awemeDict=aweme, music=music, cover=cover, avatar=avatar, resjson=resjson, savePath=savePath)
|
||||
self.awemeDownload(awemeDict=aweme, music=music, cover=cover, avatar=avatar, resjson=resjson,
|
||||
savePath=savePath)
|
||||
# time.sleep(0.5)
|
||||
wait(self.alltask, return_when=ALL_COMPLETED)
|
||||
|
||||
@ -1126,5 +1127,6 @@ class TikTok(object):
|
||||
end = time.time() # 结束时间
|
||||
print('\n' + '[下载完成]:耗时: %d分钟%d秒\n' % (int((end - start) / 60), ((end - start) % 60))) # 输出下载用时时间
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
pass
|
||||
|
@ -42,6 +42,7 @@ configModel = {
|
||||
|
||||
}
|
||||
|
||||
|
||||
def argument():
|
||||
parser = argparse.ArgumentParser(description='抖音批量下载工具 使用帮助')
|
||||
parser.add_argument("--cmd", "-C", help="使用命令行(True)或者配置文件(False), 默认为False",
|
||||
@ -82,6 +83,7 @@ def argument():
|
||||
|
||||
return args
|
||||
|
||||
|
||||
def yamlConfig():
|
||||
curPath = os.path.dirname(os.path.realpath(sys.argv[0]))
|
||||
yamlPath = os.path.join(curPath, "config.yml")
|
||||
@ -242,9 +244,11 @@ def main():
|
||||
modePath = os.path.join(userPath, mode)
|
||||
if not os.path.exists(modePath):
|
||||
os.mkdir(modePath)
|
||||
tk.userDownload(awemeList=datalist, music=configModel["music"], cover=configModel["cover"],
|
||||
tk.userDownload(awemeList=datalist, music=configModel["music"],
|
||||
cover=configModel["cover"],
|
||||
avatar=configModel["avatar"], resjson=configModel["json"],
|
||||
savePath=os.path.join(modePath, mix_file_name), thread=configModel["thread"])
|
||||
savePath=os.path.join(modePath, mix_file_name),
|
||||
thread=configModel["thread"])
|
||||
print(f'[ 提示 ]:合集 [{mixIdNameDict[mix_id]}] 中的作品下载完成\r\n')
|
||||
elif key_type == "mix":
|
||||
print("[ 提示 ]:正在请求单个合集下作品\r\n")
|
||||
@ -295,5 +299,6 @@ def main():
|
||||
end = time.time() # 结束时间
|
||||
print('\n' + '[下载完成]:总耗时: %d分钟%d秒\n' % (int((end - start) / 60), ((end - start) % 60))) # 输出下载用时时间
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
|
@ -16,6 +16,7 @@ Change Log :
|
||||
import time
|
||||
import copy
|
||||
|
||||
|
||||
class Result(object):
|
||||
def __init__(self):
|
||||
# 作者信息
|
||||
|
@ -15,6 +15,7 @@ Change Log :
|
||||
import TikTokUtils
|
||||
from TikTok import TikTok
|
||||
|
||||
|
||||
def getAwemeInfo():
|
||||
share_link_video = "3.56 uSy:/ 复制打开抖音,看看【小透明的作品】没有女朋友就用我的吧哈哈哈哈 # 表情包锁屏 https://v.douyin.com/BugmVVD/"
|
||||
share_link_pic = "8.20 MJI:/ 复制打开抖音,看看【舍溪的图文作品】我又来放图集啦~还有你们要的小可爱大图也放啦~# ... https://v.douyin.com/BugrFTN/"
|
||||
@ -25,6 +26,7 @@ def getAwemeInfo():
|
||||
datanew, dataraw = tk.getAwemeInfo(key)
|
||||
print(datanew)
|
||||
|
||||
|
||||
def getUserInfo():
|
||||
share_link_post = "1- 长按复制此条消息,打开抖音搜索,查看TA的更多作品。 https://v.douyin.com/BupCppt/"
|
||||
share_link_like = "2- 长按复制此条消息,打开抖音搜索,查看TA的更多作品。 https://v.douyin.com/BusJrfr/"
|
||||
@ -35,6 +37,7 @@ def getUserInfo():
|
||||
awemeList = tk.getUserInfo(key, mode="like", count=35)
|
||||
print(awemeList)
|
||||
|
||||
|
||||
def getLiveInfo():
|
||||
live_link = "https://live.douyin.com/40768897856"
|
||||
tk = TikTok()
|
||||
@ -44,6 +47,7 @@ def getLiveInfo():
|
||||
live_json = tk.getLiveInfo(key)
|
||||
print(live_json)
|
||||
|
||||
|
||||
def getMixInfo():
|
||||
mix_link = 'https://v.douyin.com/B3J63Le/'
|
||||
tk = TikTok()
|
||||
@ -53,6 +57,7 @@ def getMixInfo():
|
||||
awemeList = tk.getMixInfo(key, count=35)
|
||||
print(len(awemeList))
|
||||
|
||||
|
||||
def getUserAllMixInfo():
|
||||
user_all_mix_link = 'https://v.douyin.com/B38oovu/'
|
||||
tk = TikTok()
|
||||
@ -62,6 +67,7 @@ def getUserAllMixInfo():
|
||||
mixIdNameDict = tk.getUserAllMixInfo(key, count=35)
|
||||
print(mixIdNameDict)
|
||||
|
||||
|
||||
def getMusicInfo():
|
||||
music_link = 'https://v.douyin.com/S6YMNXs/'
|
||||
tk = TikTok()
|
||||
@ -71,10 +77,12 @@ def getMusicInfo():
|
||||
awemeList = tk.getMusicInfo(key, count=35)
|
||||
print(len(awemeList))
|
||||
|
||||
|
||||
def test():
|
||||
utils = TikTokUtils.Utils()
|
||||
user_all_mix_link = 'https://www.douyin.com/aweme/v1/web/aweme/favorite/?' + \
|
||||
utils.getXbogus(url='device_platform=webapp&aid=6383&sec_user_id=MS4wLjABAAAAjQn6ONfaGgUpk0Q1ep8dPiD3W4T_lxTJmemfy3MTJ64&max_cursor=1676441180000&count=10')
|
||||
utils.getXbogus(
|
||||
url='device_platform=webapp&aid=6383&sec_user_id=MS4wLjABAAAAjQn6ONfaGgUpk0Q1ep8dPiD3W4T_lxTJmemfy3MTJ64&max_cursor=1676441180000&count=10')
|
||||
headers = {
|
||||
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36',
|
||||
'referer': 'https://www.douyin.com/',
|
||||
@ -89,6 +97,7 @@ def test():
|
||||
print(datadict["aweme_list"][0]["video"]["bit_rate"])
|
||||
print(len(datadict["aweme_list"][0]["video"]["bit_rate"]))
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
# test()
|
||||
# getMusicInfo()
|
||||
@ -98,4 +107,3 @@ if __name__ == "__main__":
|
||||
# getUserInfo()
|
||||
# getLiveInfo()
|
||||
pass
|
||||
|
||||
|
@ -85,5 +85,6 @@ class Urls(object):
|
||||
|
||||
#######################################################################################
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
Urls()
|
@ -22,6 +22,7 @@ import sys
|
||||
import json
|
||||
from TikTokUrls import Urls
|
||||
|
||||
|
||||
class Utils(object):
|
||||
def __init__(self):
|
||||
pass
|
||||
@ -64,7 +65,8 @@ class Utils(object):
|
||||
user_agent = headers.get(
|
||||
'User-Agent') if headers else "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36"
|
||||
try:
|
||||
xbogus = execjs.compile(open(self.resource_path(os.path.join("X-Bogus.js"))).read()).call('sign', url, user_agent)
|
||||
xbogus = execjs.compile(open(self.resource_path(os.path.join("X-Bogus.js"))).read()).call('sign', url,
|
||||
user_agent)
|
||||
params = url + "&X-Bogus=" + xbogus
|
||||
except Exception as e:
|
||||
# print('[ 错误 ]:X-Bogus算法异常或者本地没有JS环境')
|
||||
@ -79,8 +81,6 @@ class Utils(object):
|
||||
return
|
||||
return params
|
||||
|
||||
|
||||
|
||||
def str2bool(self, v):
|
||||
if isinstance(v, bool):
|
||||
return v
|
||||
|
14
TikTokWeb.py
14
TikTokWeb.py
@ -33,7 +33,8 @@ def work(share_link, max_cursor, mode, cookie):
|
||||
has_more = None
|
||||
if key_type == "user":
|
||||
if mode == 'post' or mode == 'like':
|
||||
datalist, rawdatalist, cursor, has_more = tk.getUserInfoApi(sec_uid=key, mode=mode, count=35, max_cursor=max_cursor)
|
||||
datalist, rawdatalist, cursor, has_more = tk.getUserInfoApi(sec_uid=key, mode=mode, count=35,
|
||||
max_cursor=max_cursor)
|
||||
elif mode == 'mix':
|
||||
datalist, rawdatalist, cursor, has_more = tk.getUserAllMixInfoApi(sec_uid=key, count=35, cursor=max_cursor)
|
||||
elif key_type == "mix":
|
||||
@ -57,6 +58,7 @@ def work(share_link, max_cursor, mode, cookie):
|
||||
datadict["status_code"] = 500
|
||||
return datadict
|
||||
|
||||
|
||||
def deal(mode=None):
|
||||
usefuldict = {}
|
||||
if request.headers.get("content_type") == "application/json":
|
||||
@ -83,10 +85,12 @@ def deal(mode=None):
|
||||
usefuldict["status_code"] = 500
|
||||
return jsonify(usefuldict)
|
||||
|
||||
|
||||
app = Flask(__name__)
|
||||
# 设置编码
|
||||
app.config['JSON_AS_ASCII'] = False
|
||||
|
||||
|
||||
def argument():
|
||||
parser = argparse.ArgumentParser(description='抖音去水印工具 使用帮助')
|
||||
parser.add_argument("--port", "-p", help="Web端口",
|
||||
@ -95,34 +99,42 @@ def argument():
|
||||
|
||||
return args
|
||||
|
||||
|
||||
@app.route("/douyin/music", methods=["POST"])
|
||||
def douyinMusic():
|
||||
return deal()
|
||||
|
||||
|
||||
@app.route("/douyin/mix", methods=["POST"])
|
||||
def douyinMix():
|
||||
return deal()
|
||||
|
||||
|
||||
@app.route("/douyin/user/mix", methods=["POST"])
|
||||
def douyinUserMix():
|
||||
return deal(mode="mix")
|
||||
|
||||
|
||||
@app.route("/douyin/user/like", methods=["POST"])
|
||||
def douyinUserLike():
|
||||
return deal(mode="like")
|
||||
|
||||
|
||||
@app.route("/douyin/user/post", methods=["POST"])
|
||||
def douyinUserPost():
|
||||
return deal(mode="post")
|
||||
|
||||
|
||||
@app.route("/douyin/aweme", methods=["POST"])
|
||||
def douyinAweme():
|
||||
return deal()
|
||||
|
||||
|
||||
@app.route("/douyin/live", methods=["POST"])
|
||||
def douyinLive():
|
||||
return deal()
|
||||
|
||||
|
||||
@app.route("/douyin", methods=["POST"])
|
||||
def douyin():
|
||||
return deal()
|
||||
|
@ -19,10 +19,12 @@
|
||||
</script>
|
||||
<!-- //Meta tag Keywords -->
|
||||
<!-- /Favicons -->
|
||||
<link href="https://cdn.jsdelivr.net/gh/imgyh/tiktok/static/img/favicon.ico" rel="shortcut icon" type="image/x-icon">
|
||||
<link href="https://cdn.jsdelivr.net/gh/imgyh/tiktok/static/img/favicon.ico" rel="shortcut icon"
|
||||
type="image/x-icon">
|
||||
<!-- //Favicons -->
|
||||
<!--/Style-CSS -->
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/imgyh/tiktok/static/css/style.css" type="text/css" media="all"/>
|
||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/imgyh/tiktok/static/css/style.css" type="text/css"
|
||||
media="all"/>
|
||||
<!--//Style-CSS -->
|
||||
<!-- font-awesome-icons -->
|
||||
<link href="https://cdn.jsdelivr.net/gh/imgyh/tiktok/static/css/font-awesome.css" rel="stylesheet">
|
||||
@ -46,7 +48,8 @@
|
||||
<br>
|
||||
<p>支持视频/图集/直播解析,粘贴视频/图集/直播分享链接时无需删除文案,但如果链接正确但解析失败请删掉文案后重试 https://v.douyin.com/kcvMpuN/</p>
|
||||
{# <p>2.支持直播解析,需要网页版直播链接 https://live.douyin.com/343806013144</p>#}
|
||||
<p>关于抖音批量下载与去水印工具的更多实现细节请点击: <a href="https://www.imgyh.com/archives/41.html" target="_blank" style="color:#00c4b6;">抖音批量下载与去水印工具</a></p>
|
||||
<p>关于抖音批量下载与去水印工具的更多实现细节请点击: <a href="https://www.imgyh.com/archives/41.html" target="_blank"
|
||||
style="color:#00c4b6;">抖音批量下载与去水印工具</a></p>
|
||||
<form id="form1" onsubmit="return false" action="#" method="post" class="d-flex error-page-form">
|
||||
{# 以前需要手动选择 图片 或者 视频 现在加了自动判断#}
|
||||
{# <div class="select">#}
|
||||
|
Loading…
x
Reference in New Issue
Block a user