博客
关于我
python自动领取淘金币完整代码,这个脚本值一千不!
阅读量:239 次
发布时间:2019-03-01

本文共 1213 字,大约阅读时间需要 4 分钟。

今天把领淘金币的代码写完了,目前可以适应不同的分辨率,原理是模拟手去点击,就相当于手机上运行个按键精灵。

使用前提:

  1. 电脑上配置好了adb工具。
  2. 手机打开了开发者选项。
  3. 安装了手机淘宝。
  4. 手机淘宝是标准版,不是长辈版等其他版本。
  5. 淘宝没有做活动。偶尔遇到活动时,淘金币的位置可能会变。
# _*_ encoding:utf-8 _*_import osimport reimport timebase_sr = (1080, 2242)base_bn1 = (567, 489)   # 淘金币按钮base_bn2 = (515, 1662)   # 领取淘金币def get_resolution():    p = os.popen("adb shell wm size")    result = p.read()    pat = r'\d+'    resolution = re.findall(pat, result)    s = tuple([int(i) for i in resolution])    return sdef coor_cover(old_resolution, old_coor, new_resolution):    return round(new_resolution[0]*old_coor[0]/old_resolution[0]), \           round(new_resolution[1]*old_coor[1]/old_resolution[1])current_sr = get_resolution()if current_sr == base_sr:    current_bn1 = base_bn1    current_bn2 = base_bn2else:    current_bn1 = coor_cover(base_sr, base_bn1, current_sr)    current_bn2 = coor_cover(base_sr, base_bn2, current_sr)def click(position):    shell = f"adb shell input tap {position[0]} {position[1]}"    os.system(shell)# 启动淘宝os.system("adb shell am start -n com.taobao.taobao/com.taobao.tao.TBMainActivity")time.sleep(7)# 点击首页领淘金币按钮click(current_bn1)time.sleep(5)# 点击淘金币页的“签到领取”,但实际上不用点击这个按钮也是能领到淘金币的# click(current_bn2)# print(current_bn2)

转载地址:http://eqgp.baihongyu.com/

你可能感兴趣的文章
nginx异常:the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf
查看>>
nginx总结及使用Docker创建nginx教程
查看>>
nginx报错:the “ssl“ parameter requires ngx_http_ssl_module in /usr/local/nginx/conf/nginx.conf:128
查看>>
nginx报错:the “ssl“ parameter requires ngx_http_ssl_module in usrlocalnginxconfnginx.conf128
查看>>
Nginx搭建RTMP服务器+FFmpeg实现海康威视摄像头预览
查看>>
Nginx搭建静态资源映射实现远程访问服务器上的图片资源
查看>>
nginx日志不支持中文
查看>>
nginx日志分割并定期删除
查看>>
Nginx日志分析系统---ElasticStack(ELK)工作笔记001
查看>>
Nginx日志按天分割
查看>>
Nginx映射本地json文件,配置解决浏览器跨域问题,提供前端get请求模拟数据
查看>>
Nginx映射本地静态资源时,浏览器提示跨域问题解决
查看>>
Nginx是什么?有哪些核心技术?
查看>>
nginx最最最详细教程来了
查看>>
Nginx服务器---正向代理
查看>>
Nginx服务器上安装SSL证书
查看>>
Nginx服务器基本配置
查看>>
Nginx服务器的安装
查看>>
Nginx架构详解
查看>>
Nginx标准配置文件(包括反向代理、大文件上传、Https证书配置、文件预览等)
查看>>