python实现自动化不停打电话
import osimport timei = 0while True:os.system("adb shell am start -a android.intent.action.CALL -d tel:1XXXXXXXX007")time.sleep(4)os.system("adb shell input tap 540 2140")i+=1print(f"this is {i}th cal
·
import os
import time
i = 0
while True:
os.system("adb shell am start -a android.intent.action.CALL -d tel:1XXXXXXXX007")
time.sleep(4)
os.system("adb shell input tap 540 2140")
i+=1
print(f"this is {i}th call!")
以上实现的是自动拨号的功能,如果想要无限制的给抖音或者快手上自己喜欢的主播以支持,可以参考上述程序实现。
更多推荐




所有评论(0)