This is a simple program which one can use to learn new words more efficiently.
This program is build with simple vanilla javascript in the frontend and python flask as backend.
Just click on any Synonym or antonym to find it's definitions and examples
Design looks obsolete because, I am not a designer, I am a developer!!
- firsly clone this repository
git clone https://github.com/TanmayKumar-EngStud/Flashcards-GRE.git
- You should have python and javascript installed in your system.
- Install flask and ntlk
pip3 install flask, ntlk
- Download wordnet in nltk, for this open a python program and run the following code
import nltk
nltk.download('wordnet')
- First run the app.py python program, that is your backend server
- run the html file, using live server
- In order to insert new word, click on the '+' button in the top right corner
- Then enter the word, it's definition it's synonyms and antonyms.
- Then click on the insert button
- The python program in the backend will automatically find the definitions and examples of all the synonyms and antonyms with the help of nltk corpus (word-net).