本文实例为大家分享了python实现抖音点赞功能的具体代码,供大家参考,具体内容如下
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#coding=utf-8 from time import sleep, ctime import threading import os import sys import time import subprocess import re #m 2018-08-11 #针对于单条控制命令的终端操作 system(func_swipe,func_trap) #若要进行多条命令操作则可以直接move掉当前执行的函数操作 do方法中进行判断操作即可 #本地测试设备mi6 def connectdevcie(): #检查设备是否连接成功,如果成功返回true,否则返回false try : #获取设备列表信息,并用"\r\n"拆分 deviceinfo = subprocess.check_output( 'adb devices' ).split( "\r\n" ) #如果没有链接设备或者设备读取失败,第二个元素为空 if deviceinfo[ 1 ] = = '': return false else : return true except exception,e: print "device connect fail:" ,e def getdevicename(): try : if connectdevcie(): #获取设备名 deviceinfo = subprocess.check_output( 'adb devices -l' ) devicename = re.findall(r 'device product:(.*)\smodel' ,deviceinfo,re.s)[ 0 ] return devicename else : return "connect fail,please reconnect device..." except exception,e: print "get device name:" ,e def system(func_swipe,func_trap): while true: os.system(func_trap) #usb命令控制点击操作-->点赞操作 os.system(func_swipe) #usb命令控制滑动操作-->上滑操作 #os.system("adb shell input tap 999 1084")#usb命令控制手指终端 print 'start %s! %s' % (getdevicename(),ctime()) #控制台信息输出 sleep( 5 ) #视频时间延迟5秒 如需延长或缩短时长 改变参数即可 #def move(func): # while true: # print 'start %s! %s' %(func,ctime()) # sleep(5) |
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/qq_26476193/article/details/82843869