Python獲取抖音關(guān)注列表封號(hào)賬號(hào)的實(shí)現(xiàn)代碼
最近抖音關(guān)注到達(dá)上限5000個(gè)了,所以就導(dǎo)致很多漂亮小姐姐沒辦法關(guān)注了,那么這里就通過python獲取已經(jīng)被封號(hào)的帳號(hào)取消關(guān)注就可以了
實(shí)現(xiàn)代碼
import requestsimport jsonimport time# 抖音創(chuàng)作者平臺(tái)cookieheader = {’Cookie’: ’你的COOKIE’}shijian = time.strftime('%Y-%m-%d %H:%M:%S', time.localtime())sbdy = str(0)sl = 0file = open('D:/test.txt', 'a+',encoding=’utf-8’)file.write(shijian)yczh = 0print(str(shijian)+'n開始檢測(cè),請(qǐng)耐心等待...')while (sl < 5000): url = ’https://creator.douyin.com/aweme/v1/creator/relation/following/list/?aid=2906&app_name=aweme_creator_platform&device_platform=web&referer=https:%2F%2Fcreator.douyin.com%2Fcreator-micro%2Fhome&user_agent=Mozilla%2F5.0+(Windows+NT+10.0%3B+Win64%3B+x64)+AppleWebKit%2F537.36+(KHTML,+like+Gecko)+Chrome%2F90.0.4430.212+Safari%2F537.36&cookie_enabled=true&screen_width=1536&screen_height=864&browser_language=zh-CN&browser_platform=Win32&browser_name=Mozilla&browser_version=5.0+(Windows+NT+10.0%3B+Win64%3B+x64)+AppleWebKit%2F537.36+(KHTML,+like+Gecko)+Chrome%2F90.0.4430.212+Safari%2F537.36&browser_online=true&timezone_name=Asia%2FShanghai&_signature=_02B4Z6wo00901TSjMlwAAIDChFLelrWwFwk0pzbAAC2OgYeyEeDw.eiDhwpfH.4NSilIGJd.pSZ5de4SL4e-U2DQy-VLvH0NkfwTIp14WBZCgv63l6pLIkqBZMs9VRrdqIj3xOjfyY.2y6v8de&cursor=’+sbdy+’&count=20’ r = requests.get(url,headers=header) json_str = json.loads(r.text) if (int(json_str[’status_code’]) == int(’0’)):if ('user_info_list' in json_str): av = json_str[’user_info_list’] for d in av:url = str(d[’avatar’])if (url == 'c16000003f97583dac4' or url == 'b76600039bd12b4c09da'): print('用戶名:'+d[’nickname’]+' 不正常') text = str(’n’+d[’nickname’]) file.write(text) sl+=1 yczh+=1else: # print('用戶名:'+d[’nickname’]+' 正常') sl+=1 sbdy = str(json_str[’cursor’])else: print('檢測(cè)完成,已檢測(cè)賬號(hào)'+str(sl)+'個(gè),異常賬號(hào)共計(jì)'+str(yczh)+'個(gè)') print('異常賬號(hào)存儲(chǔ)在: '+file.name) file.close() exit() else:if ('status_message' in json_str): print(json_str[’status_message’]+',已檢測(cè)賬號(hào)'+str(sl)+'個(gè)') print('等待3分鐘繼續(xù)執(zhí)行') time.sleep(180) print('繼續(xù)執(zhí)行')else: print(json_str) print(sbdy) yn = input('是否重試,繼續(xù)執(zhí)行?[y/n]') if (yn == 'n'):file.close()exit()
需要手動(dòng)去抖音創(chuàng)作者平臺(tái)獲取cookie,注意,只是封了頭像的用戶也會(huì)獲取的,因?yàn)樵砭褪桥袛囝^像地址我是新手,學(xué)Python寫的,能用就行:loveliness:
相關(guān)文章:
1. asp知識(shí)整理筆記4(問答模式)2. 將properties文件的配置設(shè)置為整個(gè)Web應(yīng)用的全局變量實(shí)現(xiàn)方法3. ASP中解決“對(duì)象關(guān)閉時(shí),不允許操作?!钡脑幃悊栴}……4. XML入門的常見問題(二)5. UDDI FAQs6. 輕松學(xué)習(xí)XML教程7. HTML5 Canvas繪制圖形從入門到精通8. 得到XML文檔大小的方法9. css進(jìn)階學(xué)習(xí) 選擇符10. ASP動(dòng)態(tài)網(wǎng)頁制作技術(shù)經(jīng)驗(yàn)分享
