您好,登錄后才能下訂單哦!
首先電腦上安裝好adb工具包,然后手機usb接上電腦,需要打開調試模式
然后準備好一個表格,表格里準備好需要群發的手機號碼
import os
import pandas as pd
import numpy as np
import time
#群發短信,50個號碼一發,讀取表格中手機號,列名寫“手機號”
content="短信內容"
mobiles=""
df = pd.read_excel('mobiles.xlsx')
#遍歷表格,讀取手機號
for index,row in df.iterrows():
if index==len(df)-1:
mobiles=mobiles+str(row['手機號'])
os.popen("adb shell am start -a android.intent.action.SENDTO -d sms:{} --es sms_body {}".format(mobiles,content))
time.sleep(2)
#模擬發送
os.popen("adb shell input keyevent 22")
time.sleep(1)
os.popen("adb shell input keyevent 66")
time.sleep(120)
os.popen("adb shell input keyevent 3")
elif index % 50==0 and index!=0:
mobiles=mobiles+str(row['手機號'])
#打開短信,編輯短信
os.popen("adb shell am start -a android.intent.action.SENDTO -d sms:{} --es sms_body {}".format(mobiles,content))
time.sleep(2)
#模擬發送
os.popen("adb shell input keyevent 22")
time.sleep(1)
os.popen("adb shell input keyevent 66")
time.sleep(120)
os.popen("adb shell input keyevent 3")
mobiles=""
else:
mobiles=mobiles+str(row['手機號'])+','
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。