A bot to help answer questions on trivia apps like HQ and CashShow. This bot takes screenshot of the game on the phone and uses googles tesseract OCR to read the questions and options. It automates the process of googling of the answers and gives the most likely answer! It is 70%+ accurate!
Since it is against the policy of HQ-trivia I do not encourage anyone to use this during a live game and this is purely for educational purposes.
Use Python 3.6. In particular the packages/libraries used are...
- JSON - Data Storage
- Pillow - Image manipulation
- Google-Search-API - Google searching
- wikipediaapi - Wikipedia searches
- pytesseract - Google's free/open source OCR (requires seperate installtion)
- beautifulsoup4 - Parse google searches/html
- lxml - Beautifulsoup parser
- OpenCV2 - Image maniplulation
- Install Python 3.6
- Install above packages
$ pip3 install -r requirements.txt
- Tesseract
- Mac
$ brew install tesseract
- Windows
- Go to UB-Mannheim's Repository
- Then find the
tesseract 4.0
binary that corresponds with your system (32 or 64 bit)
- Mac
- For opencv
$ brew install opencv
- Install main package
$ python3 setup.py install
Make sure all packages above are installed. For android phones use Vysor and for iOS use quicktime player. The code expects the phone to be on the left side of the screen. If you want to change the screenshot co-ordinates change the values inside the ImageGrab in the screen_grab()
function. To use the script :
$ git clone https://github.com/abrad1212/HQ_Bot
$ cd HQ_Bot
$ pip3 install -r requirements.txt
$ python3 setup.py install
$ hqbot
Press s to screenshot live game or q to quit:
All contributions welcome.
Jake Mor was the person behind HQuack, the most viral popular bot to help solve HQ questions. His implementation inspired me to try my own. I recommend reading this article to learn more about the whole story.
The MIT License (MIT)