Skip to main content

Python技巧 - 制作抖音引流脚本

Python技巧 - 制作抖音引流脚本

Python技巧 - 制作抖音引流脚本

技巧记录

1、安装ApowerMirror软件(一个投屏软件)

2、安装adb驱动即Android Debug Bridge(安卓测试桥) tools,一个命令行窗口

3、了解命令

截屏命令

adb shell screencap -p /sdcard/screen.png

保存图片命令

adb pull /sdcard/screen.png

点击命令

adb shell input tap x y

翻页命令

adb shell input swipe x1 y1 x2 y2

4、脚本

import os
os.system('') # 执行截屏命令
os.system('') # 执行保存图片命令
# 根据关注按钮坐标执行点击操作
os.system('') # 执行点击关注命令
# 循转执行翻页命令
os.system('') # 执行翻页命令

 

版权声明

版权声明

张大鹏 创作并维护的 Walkerfree 博客采用 创作共用保留署名-非商业-禁止演绎4.0国际许可证。本文首发于 Walkerfree 博客(http://www.walkerfree.com/),版权所有,侵权必究。本文永久链接:http://www.walkerfree.com/article/269