Commandline tool for looking up words.
Simply launch the script with your query like so:
py wordsearch.py query
py wordsearch.py -s query
The script will then google it for you and look through supported sites for your answer
To only show english results edit line 3 in config.ini to change language sorting like so:
[DEFAULT]
selector = p
lang = all
[DEFAULT]
selector = p
lang = en
Change your consoles encoding to UTF-8 and it should be solved. On windows you can change your encoding with the following command:
chcp 65001
You can install requirements with pip
py -m pip install -r requirements.txt
- BeautifulSoup4
- Requests