All Projects → 251321639 → Wechat_brain

251321639 / Wechat_brain

知乎答题王(头脑王者)全自动答题辅助

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Wechat brain

Kingdex
📱 微信小程序 - 王者图鉴
Stars: ✭ 168 (-10.16%)
Mutual labels:  wechat
Wei
微信服务号裂变引擎,提供一套简单明了的DSL,快速配置和接入服务号裂变。 wechat fission platform, for technological dimensionality reduction.
Stars: ✭ 177 (-5.35%)
Mutual labels:  wechat
Wechatvideocourse
《微信公众号+小程序快速开发》视频教程课件及代码
Stars: ✭ 185 (-1.07%)
Mutual labels:  wechat
Nine grid view
Flutter NineGridView & DragSortView. Similar to Weibo / WeChat nine grid view controls to display pictures. Flutter仿微信/微博九宫格、拖拽排序,微信群组,钉钉群组,QQ讨论组头像。
Stars: ✭ 169 (-9.63%)
Mutual labels:  wechat
Wellchat
WellChat is a Application that is a WeChat-like APP by qml.好吧~原谅我的英语。这个一个使用qml来仿制安卓微信的Qt程序,可以运行在安卓上。
Stars: ✭ 174 (-6.95%)
Mutual labels:  wechat
We Validator
💯 简单灵活的表单验证插件,支持小程序、浏览器以及Nodejs端使用
Stars: ✭ 180 (-3.74%)
Mutual labels:  wechat
Jenkins Zh
Jenkins 中文社区网站源码
Stars: ✭ 165 (-11.76%)
Mutual labels:  wechat
Wxpy
微信机器人 / 可能是最优雅的微信个人号 API ✨✨
Stars: ✭ 13,057 (+6882.35%)
Mutual labels:  wechat
Weixin Java Cp Demo
基于Spring Boot 和 WxJava 实现的微信企业号/企业微信 后端Demo
Stars: ✭ 175 (-6.42%)
Mutual labels:  wechat
Gowechat
golang WeChat 封装,支持微信公众平台(订阅号,服务号)/微信商家平台/微信开放平台/微信企业号
Stars: ✭ 183 (-2.14%)
Mutual labels:  wechat
Abp.wechat
Abp 微信 SDK 模块,包含对微信小程序、公众号、企业微信、开放平台、第三方平台等相关接口封装。
Stars: ✭ 168 (-10.16%)
Mutual labels:  wechat
Wechat Robot
✅ js微信聊天机器人(使用个人账号,非公众号) Wechat chat robot write by js.
Stars: ✭ 173 (-7.49%)
Mutual labels:  wechat
Go Workwx
a sensible Work Weixin(企业微信, Wechat Work) SDK for Go
Stars: ✭ 181 (-3.21%)
Mutual labels:  wechat
Imall
基于Laravel5.2,Vue.js1.0的微信商城,用于熟悉 Laravel、Vuejs、Webpack、Gulp 的结合使用,已不维护及更新。(1MB单核基础服务器,浏览请耐心等待图片加载...)
Stars: ✭ 168 (-10.16%)
Mutual labels:  wechat
Wxapp Webpack Plugin
📦 微信小程序 webpack 插件
Stars: ✭ 185 (-1.07%)
Mutual labels:  wechat
Hswiper Wx
微信小程序swiper插件
Stars: ✭ 167 (-10.7%)
Mutual labels:  wechat
Weixinsdk
微信开发SDK。
Stars: ✭ 177 (-5.35%)
Mutual labels:  wechat
Vconsole
A lightweight, extendable front-end developer tool for mobile web page.
Stars: ✭ 14,017 (+7395.72%)
Mutual labels:  wechat
Wechatminiprogram Shopping Mall
微信小程序的个体商店前端(以下面一个开源模板为基础)和Java后台(含mysql数据库文件)
Stars: ✭ 186 (-0.53%)
Mutual labels:  wechat
Wechatredenvelop
iOS版微信抢红包Tweak
Stars: ✭ 2,167 (+1058.82%)
Mutual labels:  wechat

Python知乎答题王答题器

效果

原理说明

  1. 通过 Charles抓包,获取 https://question.hortor.net/question/bat/ 返回的json数据,并保存成文件
  1. 通过watchdog监测question.hortor.net/question/bat/目下文件的变化,去响应对应的方法
class FileEventHandler(FileSystemEventHandler):
	def __init__(self):
		FileSystemEventHandler.__init__(self)
	
	def on_created(self,event):
		global quiz
		if event.src_path.split('/')[-1] == 'findQuiz':
			with open('question.hortor.net/question/bat/findQuiz', encoding='utf-8') as f:
				quiz=read_question(f)
		elif event.src_path.split('/')[-1] == 'choose':
			sql.sql_write(quiz)
		elif event.src_path.split('/')[-1] == 'fightResult':
			print('fightresult')
			time.sleep(3)
			adbshell.back()
			time.sleep(3)
			adbshell.tap('start')

3.获取题目后,如果题目在数据库中,直接返回答案。否则通过百度搜索题目信息,并统计选项出现的次数,出现的最多的选项就当作答案。

4.通过adb shell input tab 模拟点击选项(自动版的只在小米6上试过)

新的接口地址:question-zh.hortor.net/question/bat/findQuiz (对照着更改一下)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].