美文网首页大数据 爬虫Python AI SqlPython学习编程网赚
用python撸支付宝体验金,才是程序员正确的打开方式

用python撸支付宝体验金,才是程序员正确的打开方式

作者: 1a076099f916 | 来源:发表于2019-01-17 11:17 被阅读1055次
    用python撸支付宝体验金,才是程序员正确的打开方式

    支付宝近期推出了余额宝体验金活动,这个活动有两个部分一个是邀请好友赢推荐金,另一个是鲤鱼跃龙门,点击越快体验金金额越高。

    用python撸支付宝体验金,才是程序员正确的打开方式

    今天讲讲怎么自动化实现快速点击加速增加我们的鲤鱼跃龙门的体验金额,实现的方法有几种:按键精灵(和谐)、appuim(环境搭建复杂)、adb(推荐)。

    用python撸支付宝体验金,才是程序员正确的打开方式

    adb是电脑驱动安卓手机的接口驱动,我们是利用在Python里面调用cmd命令行、而cmd里面打开adb工具实现对手机的控制。

    首先是下载adb工具,工具包如下:

    用python撸支付宝体验金,才是程序员正确的打开方式

    把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: normal; 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;">import os
    import time
    from threading import Thread, Lock
    import multiprocessing
    mutex = Lock()
    def test(x, y):
    while True:
    os.system('adb shell input tap {} {}'.format(x, y))
    if name == 'main':
    for i in range(4):
    t = Thread(target=test, args=(541,1606))
    t.start()
    for i in range(10):
    p = multiprocessing.Process(target=test, args=(541,1606))
    p.start()
    </pre>

    核心命令很简单:adb shell input tap {} {},main下面是多线程、多进程点击计数器的测试效果

    用python撸支付宝体验金,才是程序员正确的打开方式

    结果证明:在相同任务数的情况下多进程效率优于多线程,同时受制于安卓的控件设置,在一定时间内的相同操作会被认为是一个,所以最后点击效果是在每秒8~10次,任务数在5个就能达到。

    在支付宝上的实验效果怎么样呢?

    用python撸支付宝体验金,才是程序员正确的打开方式

    第一次30000、第二次就188,看来支付宝不按套路出牌,和赏金一样,开始高后面低。

    不过做这个的目的不在于参与活动,而是在多进程、多线程性能的测试以及手机控群的一次测试。

    驱动及脚本打包上传,进群:700341555获取源码!

    相关文章

      网友评论

        本文标题:用python撸支付宝体验金,才是程序员正确的打开方式

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