A general dictionary (with synonyms, antonyms) for ebook users reading on PC. Just copy the word and it will automatically show you the various meaning(s) of the word. If you are on Linux or some other OS you will experience problem in creating system notifications. Will update the code for that soon.
This was built in Python 3.4 and please refer to the pre-requistes required for running it successfully.
- Python 3.4 (although it shoudn't have problem running on other Python versions.)
- NLTK for Python
- Wordnet corpus
- Pyperclip for Python
- (For Linux users) PyMsgBox library for creating alert box(refer google for installation)
- Save the script in your python folder.
- Open IDLE or cmd to run python.
- Run the following code -
import os
os.chdir('path') #path where script is saved
from dictionary import PyDict
PyDict().run() #by default the script runs for 2 hours in background
#To run for specific hour(s) say 1.5 hours
PyDict().run(timer=1.5)
To stop script, simply close the screen.
- Extract the zip content
- Open cmd
- Run the following commands -
cd "folderpath where zip is extracted"
python setup.py install
- Extract the folder and save it in your python directory.