【原創(chuàng)】抖音關(guān)鍵詞搜索
本文所有教程及源碼、軟件僅為技術(shù)研究。不涉及計算機(jī)信息系統(tǒng)功能的刪除、修改、增加、干擾,更不會影響計算機(jī)信息系統(tǒng)的正常運(yùn)行。不得將代碼用于非法用途,如侵立刪!
抖音關(guān)鍵詞搜索腳本
環(huán)境
win10
雷電5
Python3.9
Auto.js 7 PRO
mitmproxy4.0
Auto.js 根據(jù)關(guān)鍵詞搜索并滑動
function main(url, num, gap, timeout) {
? ?// 這里寫腳本的主邏輯
? ?threads.start(function () {
? ? ? ?//腳本開始時間
? ? ? ?var starttime = new Date();
? ? ? ?console.info("腳本開始時間:"+Time_format(starttime))
? ? ? ?console.info("啟動腳本")
? ? ? ?console.info("滑動執(zhí)行次數(shù):"+num+"次")
? ? ? ?console.info("滑動間隔時間:"+gap+"秒")
? ? ? ?console.info("數(shù)據(jù)加載超時時間:"+timeout+"秒")
? ? ? ?//懸浮窗 控制臺
? ? ? ?console.show();
? ? ? ?//啟用按鍵監(jiān)聽
? ? ? ?events.observeKey();
? ? ? ?//監(jiān)聽音量上鍵按下
? ? ? ?events.onKeyDown("volume_down", function(event){
? ? ? ? ? ?console.info("停止腳本");
? ? ? ? ? ?exit();
? ? ? ?});
? ? ? ?// 效驗(yàn)代理
? ? ? ?proxy();
? ? ? ?//啟動APP
? ? ? ?toast("啟動APP")
? ? ? ?opendy();
? ? ? ?
? ? ? ?// 點(diǎn)擊搜索按鈕
? ? ? ?console.info("定位搜索按鈕");
? ? ? ?while(!(id("ex5").exists())){
? ? ? ? ? ?console.info("搜索按鈕定位失敗");
? ? ? ? ? ?sleep(5000)
? ? ? ?};
? ? ? ?console.info("成功定位搜索按鈕");
? ? ? ?search = id("ex5").findOne();
? ? ? ?right = ?search.bounds().centerX(); //X值中間位置
? ? ? ?top = search.bounds().centerY(); ?//Y值中間位置
? ? ? ?// console.info(right, top);
? ? ? ?click(right, top);
? ? ? ?console.info("點(diǎn)擊搜索按鈕");
? ? ? ?sleep(3000);
? ? ? ?// 請求搜索關(guān)鍵詞接口
? ? ? ?var url1 = url.toString(); //需要強(qiáng)轉(zhuǎn)一下數(shù)據(jù)類型
? ? ? ?var wds = get_wd(url1);
? ? ? ?// 循環(huán)執(zhí)行搜索任務(wù)
? ? ? ?for (var i=0;i<wds.length;i++){ ? ?
? ? ? ? ? ?var wd=wds[i]; //獲取數(shù)組指定下標(biāo)內(nèi)容 ?下標(biāo)從零算起
? ? ? ? ? ?console.log("獲取關(guān)鍵詞:" +wd)
? ? ? ? ? ?// 設(shè)置搜索文本
? ? ? ? ? ?console.info("定位搜索輸入框");
? ? ? ? ? ?while(!(id("fl_intput_hint_container").exists())){
? ? ? ? ? ? ? ?console.info("搜索輸入框定位失敗");
? ? ? ? ? ? ? ?sleep(5000)
? ? ? ? ? ?};
? ? ? ? ? ?console.info("輸入關(guān)鍵詞:");
? ? ? ? ? ?id("et_search_kw").setText(wd)
? ? ? ? ? ?console.info("點(diǎn)擊搜索");
? ? ? ? ? ?// 點(diǎn)擊搜索
? ? ? ? ? ?// id("l+h").text("搜索").click()
? ? ? ? ? ?// console.info("成功定位搜索按鈕");
? ? ? ? ? ?search_1 = id("l+h").findOne();
? ? ? ? ? ?// 提取控件坐標(biāo)中心位置并點(diǎn)擊
? ? ? ? ? ?coordinate_1 = JSON.parse(JSON.stringify(search_1.bounds())); //提取組工動態(tài)坐標(biāo)值
? ? ? ? ? ?centerX = search_1.bounds().centerX();
? ? ? ? ? ?centerY = search_1.bounds().centerY();
? ? ? ? ? ?console.info(centerX, centerY);
? ? ? ? ? ?click(centerX, centerY);
? ? ? ? ? ?console.info("數(shù)據(jù)加載中。。。");
? ? ? ? ? ?// 判斷數(shù)據(jù)是否加載成功
? ? ? ? ? ?id_name = "ifj" //數(shù)據(jù)加載小圖標(biāo)id
? ? ? ? ? ?if (!(Refresh(timeout, id_name))){
? ? ? ? ? ? ? ?toast('數(shù)據(jù)加載失敗!重試')
? ? ? ? ? ? ? ?toast("關(guān)閉抖音APP")
? ? ? ? ? ? ? ?var packagename = getPackageName("抖音");
? ? ? ? ? ? ? ?killApp(packagename);
? ? ? ? ? ? ? ?sleep(2000)
? ? ? ? ? ? ? ?return
? ? ? ? ? ?};
? ? ? ? ? ?console.info("數(shù)據(jù)加載成功")
? ? ? ? ? ?// 開始滑動
? ? ? ? ? ?// num=滑動執(zhí)行次數(shù)
? ? ? ? ? ?// gap=滑動間隔時間
? ? ? ? ? ?// 頁面加載超時時間
? ? ? ? ? ?if (!(slide(wd, num, gap, timeout))){
? ? ? ? ? ? ? ?exit; ?
? ? ? ? ? ?};
? ? ? ?};
? ? ? ?console.info("結(jié)束腳本")
? ? ? ?var endTime = new Date();
? ? ? ?console.info("腳本結(jié)束時間:"+Time_format(endTime))
? ? ? ?console.info("腳本執(zhí)行用時:"+Time_calculation(endTime-starttime));
? ?});
};

mitm數(shù)據(jù)抓包并存儲
import json
import datetime
import mitmproxy.http
from mitmproxy import ctx, http
class Joker:
? ?def request(self, flow: mitmproxy.http.HTTPFlow):
? ? ? ?"""
? ? ? ?flow: 自變量寫法,用來定義變量類型
? ? ? ?發(fā)送請求的所有數(shù)據(jù)
? ? ? ?可以修改發(fā)送的請求參數(shù)
? ? ? ?"""
? ? ? ?url = "https://aweme.snssdk.com/aweme/v1/general/search/"
? ? ? ?# 調(diào)試用
? ? ? ?# 篩選出以上面url為開頭的url
? ? ? ?if flow.request.url.startswith(url):
? ? ? ? ? ?# 打印請求的url
? ? ? ? ? ?ctx.log.warn(111111111)
? ? ? ? ? ?ctx.log.warn(f'{flow.request.url}')
? ? ? ? ? ?ctx.log.warn(f'{flow.request.pretty_url}')
? ? ? ? ? ?ctx.log.warn(2222222222)
? ? ? ? ? ?ctx.log.warn(f'{flow.request.host}')
? ? ? ? ? ?ctx.log.warn(flow.__dict__)
? ?def response(self, flow: mitmproxy.http.HTTPFlow):
? ? ? ?"""
? ? ? ?flow: 自變量寫法,用來定義變量類型
? ? ? ?接收到的響應(yīng)數(shù)據(jù)
? ? ? ?"""
? ? ? ?# 篩選出以上面url為開頭的url
? ? ? ?if flow.request.url.startswith(url):
? ? ? ? ? ?# ctx.log.error(111111111111)
? ? ? ? ? ?text = flow.response.get_text()
? ? ? ? ? ?# 將已編碼的json字符串解碼為python對象
? ? ? ? ? ?content = json.loads(text)
? ? ? ? ? ?# 評論內(nèi)容
? ? ? ? ? ?comments = content['data']
? ? ? ? ? ?# 提取關(guān)鍵詞
? ? ? ? ? ?keyword = content.get("global_doodle_config").get("keyword")
? ? ? ? ? ?ctx.log.warn(f'關(guān)鍵詞:{keyword}')
? ? ? ? ? ?for comment in comments:
? ? ? ? ? ? ? ?doc_type = comment.get('doc_type')
? ? ? ? ? ? ? ?# ctx.log.info(doc_type)
? ? ? ? ? ? ? ?# ctx.log.info(type(doc_type)) ?
? ? ? ? ? ? ? ?if doc_type != 3:
? ? ? ? ? ? ? ? ? ?# ctx.log.info("不是廣告跳過")
? ? ? ? ? ? ? ? ? ?continue ? ?
? ? ? ? ? ? ? ?# 標(biāo)題
? ? ? ? ? ? ? ?desc = comment.get('aweme_info').get("desc")
? ? ? ? ? ? ? ?# 視頻鏈接
? ? ? ? ? ? ? ?share_url = comment.get('aweme_info').get("share_url")
? ? ? ? ? ? ? ?# 視頻id
? ? ? ? ? ? ? ?aweme_id = comment.get('aweme_info').get("aweme_id")
? ? ? ? ? ? ? ?text = f'{keyword}|{desc}|{share_url}|{aweme_id}'
? ? ? ? ? ? ? ?ctx.log.error(text)
? ? ? ? ? ? ? ?self.save_connect(text=text)
? ? ? ? ? ? ? ?ctx.log.error("數(shù)據(jù)保存成功!")
? ? ? ?# 篩選出以上面url為開頭的url
? ? ? ?if flow.request.url.startswith(url_2):
? ? ? ? ? ?# ctx.log.error(22222222222222)
? ? ? ? ? ?# 提取出來是一個不規(guī)則的字符串,有時是5行,有時是9行
? ? ? ? ? ?text = flow.response.get_text()
? ? ? ? ? ?text = text.split("\n")
? ? ? ? ? ?for i in text:
? ? ? ? ? ? ? ?# 將已編碼的json字符串解碼為python對象
? ? ? ? ? ? ? ?try:
? ? ? ? ? ? ? ? ? ?content = json.loads(i)
? ? ? ? ? ? ? ? ? ?# 評論內(nèi)容
? ? ? ? ? ? ? ? ? ?comments = content['data']
? ? ? ? ? ? ? ? ? ?# 提取關(guān)鍵詞
? ? ? ? ? ? ? ? ? ?keyword = content.get("global_doodle_config").get("keyword")
? ? ? ? ? ? ? ? ? ?ctx.log.warn(f'關(guān)鍵詞:{keyword}')
? ? ? ? ? ? ? ? ? ?for comment in comments:
? ? ? ? ? ? ? ? ? ? ? ?doc_type = comment.get('doc_type')
? ? ? ? ? ? ? ? ? ? ? ?# ctx.log.info(doc_type)
? ? ? ? ? ? ? ? ? ? ? ?# ctx.log.info(type(doc_type)) ?
? ? ? ? ? ? ? ? ? ? ? ?if doc_type != 3:
? ? ? ? ? ? ? ? ? ? ? ? ? ?# ctx.log.info("不是廣告跳過")
? ? ? ? ? ? ? ? ? ? ? ? ? ?continue ? ?
? ? ? ? ? ? ? ? ? ? ? ?# 標(biāo)題
? ? ? ? ? ? ? ? ? ? ? ?desc = comment.get('aweme_info').get("desc")
? ? ? ? ? ? ? ? ? ? ? ?# 視頻鏈接
? ? ? ? ? ? ? ? ? ? ? ?share_url = comment.get('aweme_info').get("share_url")
? ? ? ? ? ? ? ? ? ? ? ?# 視頻id
? ? ? ? ? ? ? ? ? ? ? ?aweme_id = comment.get('aweme_info').get("aweme_id")
? ? ? ? ? ? ? ? ? ? ? ?text = f'{keyword}|{desc}|{share_url}|{aweme_id}'
? ? ? ? ? ? ? ? ? ? ? ?ctx.log.error(text)
? ? ? ? ? ? ? ? ? ? ? ?self.save_connect(text=text)
? ? ? ? ? ? ? ? ? ? ? ?ctx.log.error("數(shù)據(jù)保存成功!")
? ? ? ? ? ? ? ?except:
? ? ? ? ? ? ? ? ? ?continue
? ?def save_connect(self, text):
? ? ? ?"""
? ? ? ?保存數(shù)據(jù)
? ? ? ?"""
? ? ? ?filename = datetime.datetime.now().strftime('%Y-%m-%d') + '.txt'
? ? ? ?with open(filename, 'a+', encoding='utf-8') as f:
? ? ? ? ? ?f.write(text)
? ? ? ? ? ?f.write('\n')
addons = [
? ?Joker()
]

效果

資源下載
本文僅供學(xué)習(xí)交流使用,如侵立刪!