美文网首页大数据 爬虫Python AI SqlPython之佳
支付宝推出新活动,Python脚本能让你赚的更多!(附源码)

支付宝推出新活动,Python脚本能让你赚的更多!(附源码)

作者: 山禾家的猫 | 来源:发表于2019-01-17 16:11 被阅读0次

    写在前面

    近期,马云大哥又在支付宝推出新活动了,不对,马云已经辞职了。不好意思哈,小编忘了。

    但是呢,这个活动可是实实在在存在的哦~

    据说,只要你的手速够快,就能够赚去更多的余额宝体验金哦~

    下面,小编就用Python程序员的正确打开方式让大家获取更多的余额宝收益,一起来看看吧~

    正文

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

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

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

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

    2、把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

    3、下面是多线程、多进程点击计数器的测试效果:

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

    在支付宝上的实验效果:

    第一次30000、第二次就188

    看来支付宝总按老套路出牌,和赏金一样,开始高后面低。

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

    写在最后

    看完文章的小伙伴有没有特别心动呢?小编提供打包好的项目哦~虽然可能活动时间快结束了,但是也是开启Python脚本学习的一个经典案例哦~

    相关文章

      网友评论

        本文标题:支付宝推出新活动,Python脚本能让你赚的更多!(附源码)

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