mirror of
https://github.com/imgyh/tiktok.git
synced 2025-04-05 23:55:45 +08:00
106 lines
3.4 KiB
Python
106 lines
3.4 KiB
Python
#!/usr/bin/env python
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
'''
|
|
@Description:TikTok.py
|
|
@Date :2023/01/27 19:36:18
|
|
@Author :imgyh
|
|
@version :1.0
|
|
@Github :https://github.com/imgyh
|
|
@Mail :admin@imgyh.com
|
|
-------------------------------------------------
|
|
Change Log :
|
|
-------------------------------------------------
|
|
'''
|
|
|
|
import random
|
|
import re
|
|
import requests
|
|
import execjs
|
|
import os
|
|
import sys
|
|
import json
|
|
from TikTokUrls import Urls
|
|
|
|
class Utils(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
def generate_random_str(self, randomlength=16):
|
|
"""
|
|
根据传入长度产生随机字符串
|
|
"""
|
|
random_str = ''
|
|
base_str = 'ABCDEFGHIGKLMNOPQRSTUVWXYZabcdefghigklmnopqrstuvwxyz0123456789='
|
|
length = len(base_str) - 1
|
|
for _ in range(randomlength):
|
|
random_str += base_str[random.randint(0, length)]
|
|
return random_str
|
|
|
|
def replaceStr(self, filenamestr: str):
|
|
"""
|
|
替换非法字符,缩短字符长度,使其能成为文件名
|
|
"""
|
|
# 匹配 汉字 字母 数字 空格
|
|
match = "([0-9A-Za-z\u4e00-\u9fa5]+)"
|
|
|
|
result = re.findall(match, filenamestr)
|
|
|
|
result = "".join(result).strip()
|
|
if len(result) > 20:
|
|
result = result[:20]
|
|
# 去除前后空格
|
|
return result
|
|
|
|
def resource_path(self,relative_path):
|
|
if getattr(sys, 'frozen', False): # 是否Bundle Resource
|
|
base_path = sys._MEIPASS
|
|
else:
|
|
base_path = os.path.dirname(os.path.abspath(__file__))
|
|
return os.path.join(base_path, relative_path)
|
|
|
|
def getXbogus(self, url, headers=None):
|
|
# getXbogus算法开源地址https://github.com/B1gM8c/tiktok
|
|
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)
|
|
params = url + "&X-Bogus=" + xbogus
|
|
except Exception as e:
|
|
# print('[ 错误 ]:X-Bogus算法异常或者本地没有JS环境')
|
|
try:
|
|
# print('[ 提示 ]:尝试远程调用X-Bogus接口')
|
|
response = json.loads(requests.post(
|
|
url=Urls().GET_XB_PATH, data={"param": url}, headers=headers).text)
|
|
params = response["param"]
|
|
xbogus = response["X-Bogus"]
|
|
except Exception as e:
|
|
print('[ 错误 ]:X-Bogus获取异常')
|
|
return
|
|
return params
|
|
|
|
|
|
|
|
def str2bool(self, v):
|
|
if isinstance(v, bool):
|
|
return v
|
|
if v.lower() in ('yes', 'true', 't', 'y', '1'):
|
|
return True
|
|
elif v.lower() in ('no', 'false', 'f', 'n', '0'):
|
|
return False
|
|
else:
|
|
return True
|
|
|
|
# https://www.52pojie.cn/thread-1589242-1-1.html
|
|
def getttwid(self):
|
|
url = 'https://ttwid.bytedance.com/ttwid/union/register/'
|
|
data = '{"region":"cn","aid":1768,"needFid":false,"service":"www.ixigua.com","migrate_info":{"ticket":"","source":"node"},"cbUrlProtocol":"https","union":true}'
|
|
res = requests.post(url=url, data=data)
|
|
|
|
for i,j in res.cookies.items():
|
|
return j
|
|
|
|
|
|
if __name__ == "__main__":
|
|
pass
|