美文网首页大数据 爬虫Python AI SqlPython学习Python小程序
python脚本控制安卓手机,可以用来做什么你知道吗?

python脚本控制安卓手机,可以用来做什么你知道吗?

作者: 1a076099f916 | 来源:发表于2018-11-17 14:47 被阅读5次
    python脚本控制安卓手机,可以用来做什么你知道吗?

    加群小编Python学习群:813542856即可获取大量python视频教程以及各类PDF!

    有的时候想写写安卓的脚本,不过用 java 或者 kotlin 写图像处理什么的太麻烦了,按键精灵的脚本我也懒得学。adb 倒是可以,但是很多时候要用电脑,又有些不太方便。感觉现在云手机比较方便吧,比如说:红手指、爱云兔这种,我比较喜欢用云手机这种挂一挂机,在手机上随时都能看看挂机的进度什么的。

    于是就写了个基础的安卓端的接收器,用来接收服务端 python 的控制命令,从而对安卓机进行操控。

    <pre style="-webkit-tap-highlight-color: transparent; box-sizing: border-box; font-family: Consolas, Menlo, Courier, monospace; font-size: 16px; white-space: pre-wrap; position: relative; line-height: 1.5; color: rgb(153, 153, 153); margin: 1em 0px; padding: 12px 10px; background: rgb(244, 245, 246); border: 1px solid rgb(232, 232, 232); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"> https://github.com/nladuo/PyAndroidControl
    </pre>

    架构想法

    架构比较简单,有个安卓端和webserver端。

    python脚本控制安卓手机,可以用来做什么你知道吗?

    其实就是 App 每隔一段时间上传截图给 web 端,然后可以用 python 做一波图像搜索或者是别的什么东西随意,然后返回命令给 App 端,然后 App 执行相应命令。

    使用方法

    1.安装PyAndroidControl APP

    因为要操控设备,所以这里需要授予PyAndroidControl应用root权限才行。

    <pre style="-webkit-tap-highlight-color: transparent; box-sizing: border-box; font-family: Consolas, Menlo, Courier, monospace; font-size: 16px; white-space: pre-wrap; position: relative; line-height: 1.5; color: rgb(153, 153, 153); margin: 1em 0px; padding: 12px 10px; background: rgb(244, 245, 246); border: 1px solid rgb(232, 232, 232); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"> https://github.com/nladuo/PyAndroidControl/releases
    </pre>

    2.按照个人需求修改代码

    这里我提供了一个get_commands方法供开发者使用。有两个参数,第一个token代表登陆时的标签,用以区分用户。第二个img_file代表安卓设备的截图。

    所以只要修改 simple-control-server/logics.py 文件即可。

    <pre style="-webkit-tap-highlight-color: transparent; box-sizing: border-box; font-family: Consolas, Menlo, Courier, monospace; font-size: 16px; white-space: pre-wrap; position: relative; line-height: 1.5; color: rgb(153, 153, 153); margin: 1em 0px; padding: 12px 10px; background: rgb(244, 245, 246); border: 1px solid rgb(232, 232, 232); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;">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
    </pre>

    这里面为了简单,提供了一个每个一秒自动输入“111”、“222”、“333”的例子。

    python脚本控制安卓手机,可以用来做什么你知道吗?

    相关文章

      网友评论

        本文标题:python脚本控制安卓手机,可以用来做什么你知道吗?

        本文链接:https://www.haomeiwen.com/subject/uqzbfqtx.html