资源简介
非常完整的Python源代码,不仅提供源代码还包含所有的教程,教你如何搭建环境并且完整运行代码,是最新并且十分难得的学习项目,新手无压力!特别是还能顺便关注一下抖音上的小姐姐哈!所以,3C币真的不多!博主还有更多编程语言的源代码、开发实战项目在不断更新中,所以欢迎关注博主或私聊,会有你需要的!
代码片段和文件信息
# -*- coding: utf-8 -*-
import sys
import random
import time
from PIL import Image
if sys.version_info.major != 3:
print(‘Please run under Python3‘)
exit(1)
try:
from common import debug config screenshot UnicodeStreamFilter
from common.auto_adb import auto_adb
from common import apiutil
from common.compression import resize_image
except Exception as ex:
print(ex)
print(‘请将脚本放在项目根目录中运行‘)
print(‘请检查项目根目录中的 common 文件夹是否存在‘)
exit(1)
VERSION = “0.0.1“
# 我申请的 Key,随便用,嘻嘻嘻
# 申请地址 http://ai.qq.com
AppID = ‘1106858595‘
AppKey = ‘bNUNgOpY6AeeJjFu‘
DEBUG_SWITCH = True
FACE_PATH = ‘face/‘
adb = auto_adb()
adb.test_device()
config = config.open_accordant_config()
# 审美标准
BEAUTY_THRESHOLD = 80
# 最小年龄
GIRL_MIN_AGE = 18
def yes_or_no():
“““
检查是否已经为启动程序做好了准备
“““
while True:
yes_or_no = str(input(‘请确保手机打开了 ADB 并连接了电脑,‘
‘然后打开手机软件,确定开始?[y/n]:‘))
if yes_or_no == ‘y‘:
break
elif yes_or_no == ‘n‘:
print(‘谢谢使用‘ end=‘‘)
exit(0)
else:
print(‘请重新输入‘)
def _random_bias(num):
“““
random bias
:param num:
:return:
“““
print(‘num = ‘ num)
return random.randint(-num num)
def next_page():
“““
翻到下一页
:return:
“““
cmd = ‘shell input swipe {x1} {y1} {x2} {y2} {duration}‘.format(
x1=config[‘center_point‘][‘x‘]
y1=config[‘center_point‘][‘y‘]+config[‘center_point‘][‘ry‘]
x2=config[‘center_point‘][‘x‘]
y2=config[‘center_point‘][‘y‘]
duration=200
)
adb.run(cmd)
time.sleep(1.5)
def follow_user():
“““
关注用户
:return:
“““
cmd = ‘shell input tap {x} {y}‘.format(
x=config[‘follow_bottom‘][‘x‘] + _random_bias(10)
y=config[‘follow_bottom‘][‘y‘] + _random_bias(10)
)
adb.run(cmd)
time.sleep(0.5)
def thumbs_up():
“““
点赞
:return:
“““
cmd = ‘shell input tap {x} {y}‘.format(
x=config[‘star_bottom‘][‘x‘] + _random_bias(10)
y=config[‘star_bottom‘][‘y‘] + _random_bias(10)
)
adb.run(cmd)
time.sleep(0.5)
def main():
“““
main
:return:
“““
print(‘程序版本号:{}‘.format(VERSION))
print(‘激活窗口并按 CONTROL + C 组合键退出‘)
debug.dump_device_info()
screenshot.check_screenshot()
while True:
next_page()
time.sleep(1)
screenshot.pull_screenshot()
resize_image(‘autojump.png‘ ‘optimized.png‘ 1024*1024)
with open(‘optimized.png‘ ‘rb‘) as bin_data:
image_data = bin_data.read()
ai_obj = apiutil.AiPlat(AppID AppKey)
rsp = ai_obj.face_detectface(image_data 0)
major_total = 0
minor_total = 0
if rsp[‘ret‘] == 0:
beauty = 0
for face in rsp[‘data‘][‘face_list‘]:
print(face)
face_area = (face[‘x‘] face[‘y‘] face[‘x‘]+face[‘width‘] face[‘y‘]+face[‘height‘])
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-06-07 08:44 Douyin-Bot-master\
文件 1220 2018-06-07 08:44 Douyin-Bot-master\.gitignore
文件 1079 2018-06-07 08:44 Douyin-Bot-master\LICENSE
文件 2285 2018-06-07 08:44 Douyin-Bot-master\README.md
目录 0 2018-06-07 08:44 Douyin-Bot-master\Tools\
文件 96256 2018-06-07 08:44 Douyin-Bot-master\Tools\AdbWinApi.dll
文件 60928 2018-06-07 08:44 Douyin-Bot-master\Tools\AdbWinUsbApi.dll
文件 764 2018-06-07 08:44 Douyin-Bot-master\Tools\README.md
文件 1009664 2018-06-07 08:44 Douyin-Bot-master\Tools\adb.exe
文件 196608 2018-06-07 08:44 Douyin-Bot-master\Tools\fastboot.exe
目录 0 2018-06-07 08:44 Douyin-Bot-master\apk\
文件 163634 2018-06-07 08:44 Douyin-Bot-master\apk\ADBKeyBoard.apk
文件 669211 2018-06-07 08:44 Douyin-Bot-master\apk\_macosx_64bit.7z
文件 2872068 2018-06-07 08:44 Douyin-Bot-master\apk\aapt
文件 456986 2018-06-07 08:44 Douyin-Bot-master\autojump.png
目录 0 2018-06-07 08:44 Douyin-Bot-master\common\
文件 589 2018-06-07 08:44 Douyin-Bot-master\common\UnicodeStreamFilter.py
文件 0 2018-06-07 08:44 Douyin-Bot-master\common\__init__.py
文件 1804 2018-06-07 08:44 Douyin-Bot-master\common\ai.py
文件 1876 2018-06-07 08:44 Douyin-Bot-master\common\apiutil.py
文件 2513 2018-06-07 08:44 Douyin-Bot-master\common\auto_adb.py
文件 833 2018-06-07 08:44 Douyin-Bot-master\common\compression.py
文件 1405 2018-06-07 08:44 Douyin-Bot-master\common\config.py
文件 3619 2018-06-07 08:44 Douyin-Bot-master\common\debug.py
文件 561 2018-06-07 08:44 Douyin-Bot-master\common\excel_keyword.py
文件 1939 2018-06-07 08:44 Douyin-Bot-master\common\screenshot.py
目录 0 2018-06-07 08:44 Douyin-Bot-master\config\
目录 0 2018-06-07 08:44 Douyin-Bot-master\config\1920x1080\
文件 244 2018-06-07 08:44 Douyin-Bot-master\config\1920x1080\config.json
文件 244 2018-06-07 08:44 Douyin-Bot-master\config\default.json
文件 4251 2018-06-07 08:44 Douyin-Bot-master\douyin-bot.py
............此处省略77个文件信息
相关资源
- python小游戏
- Foundations of PyGTK Development_ GUI Creation
- Python Tricks
- pythonwin 64位
- 聊天机器人tensorflow
- Python for Unix and Linux System Administratio
- Jenkins_python一步一步环境配置
- Python Tricks: A Buffet of Awesome Python Feat
- Learning scikit-learn Machine Learning in Pyth
- python programming on win32
- 物联网Python开发实战书的源代码
- Python通讯录程序代码
- Python - 弹弹堂小游戏
- Python编程从入门到实践(图灵程序设
- python-pygame-消消乐
- An Introduction to Statistics with Python.pdf
- 李飞飞深度学习全部作业python源代码
- Python编程:从入门到实践(高清完整
- Python飞机大战代码括音效,图片,字
- python3+实现视频转图片和图片转视频
- Python语言程序设计基础(第2版)-嵩天
- “笨办法”学python(第3版).pdf
- Python飞机大战 图片+音乐
- 廖雪峰python3 高清完整
- 基于Python的图像分类
- Djangopython实现数据挖掘和分析.doc
- 使用python实现人工智能算法
- GBDT单机版Python实现源代码
- Python实现跟踪、光流、前景检测
- 多元线性回归python实现
评论
共有 条评论