python 抖音采集_抖音 数据自动化采集(多开)

本文仅供学习交流使用,如侵立删!

企鹅 : 1033383881

环境:

win10 64位

python 3.6.1

appium 0.41

selenium 3.141.0

mitmproxy 4.0.4(中间件)

逍遥模拟器或真机

PS:需提前配置好Appium、 mitmproxy 运行环境

1.启动mitmproxy中间件

def response(flow):

url = 'https://aweme-hl.snssdk.com/aweme/v2/comment/list'

# 筛选出以上面url为开头的url

if flow.request.url.startswith(url):

# 获取评论json数据

text = flow.response.text

# 将已编码的json字符串解码为python对象

content = json.loads(text)

# 评论内容

comments = content['comments']

for comment in comments:

# 评论内容

_text = comment['text']

# 用户名

nickname = comment['user']['nickname']

# 个性签名

signature = comment['user']['signature']

脚本运行命令:

你可能感兴趣的:(python,抖音采集)