有的時候玩遊戲或者幹什麼想寫寫安卓的腳本,不過用 java 或者 kotlin 寫圖像處理什麼的太麻煩了,按鍵精靈的腳本我也懶得學。adb 卻是能夠,可是不少時候要用電腦,又有些不太方便。感受如今雲手機比較方便吧,好比說:紅手指、愛雲兔這種,我比較喜歡用雲手機這種掛一掛機,在手機上隨時都能看看掛機的進度什麼的。java
因而就寫了個基礎的安卓端的接收器,用來接收服務端 python 的控制命令,從而對安卓機進行操控。python
連接地址:github.com/nladuo/PyAn…android
架構比較簡單,有個安卓端和webserver端。 git
其實就是 App 每隔一段時間上傳截圖給 web 端,而後能夠用 python 作一波圖像搜索或者是別的什麼東西隨意,而後返回命令給 App 端,而後 App 執行相應命令。由於要操控設備,因此這裏須要授予PyAndroidControl應用root權限才行。 下載地址:github.com/nladuo/PyAn…github
這裏我提供了一個get_commands方法供開發者使用。有兩個參數,第一個token表明登錄時的標籤,用以區分用戶。第二個img_file表明安卓設備的截圖。web
因此只要修改simple-control-server/logics.py文件便可。shell
def get_commands(token, img_file):
""" analyze the screenshot and send commands back to android device """
img_file.save("tmp.png")
print(token)
# your adb shell commands
cmds = [
'input text "111"',
'input text "222"',
'input text "333"',
]
return cmds
複製代碼
這裏面爲了簡單,提供了一個每一個一秒自動輸入「111」、「222」、「333」的例子。架構