███████████████████████████████████████████████████ █▄─▄███▄─▄▄─██▀▄─██▄─▄▄▀█▄─▀█▄─▄█▄─▄███▄─▄▄─█─▄─▄─█ ██─██▀██─▄█▀██─▀─███─▄─▄██─█▄▀─███─██▀██─▄█▀███─███ ▀▄▄▄▄▄▀▄▄▄▄▄▀▄▄▀▄▄▀▄▄▀▄▄▀▄▄▄▀▀▄▄▀▄▄▄▄▄▀▄▄▄▄▄▀▀▄▄▄▀▀
Open Source version of a popular quiz style learning website done while interning @ Institue of Computing in Research
git clone https://github.com/Anish-Mahambare/LearnLet.git
Install the following dependencies to get started
pip install flask
pip install csv
pip install random
There are two ways to create your learning set that you will practice through learn let.
- Option 1
- Go to your text editor and make a file InsertName.csv
- Write your questions and anwsers in the following format
question,anwser
question,anwser
question,anwser
- Save the csv file in the LearnLet/Programs/Datasets/ directory
- Option 2
- Go to the set you wish to study on quizlet
- Open up web console through inspect
- Copy the JS script(QuizletTOcsv.js) from the Programs directory and run it in the web console
- Copy the output and save it in your text editor
- Save the file as InsertName.csv in the
LearnLet/Programs/Datasets/directory
Navigate into the programs directory and run the following for Quiz: (switch InsertName with the set you want to study)
python3 LearnLetQuiz.py ./Datasets/InsertName.csv
Navigate into the programs directory and run the following for Match: (switch InsertName with the set you want to study)
python3 LearnLetMatch.py ./Datasets/InsertName.csv
- Open the link that the terminal outputs and start studying!
git clone https://github.com/Anish-Mahambare/LearnLet.git
Install the following dependencies to get started
!pip install flask
!pip install csv
!pip install random
There are two ways to create your learning set that you will practice through learn let.
- Option 1
- Go to your text editor and make a file InsertName.csv
- Write your questions and anwsers in the following format
question,anwser
question,anwser
question,anwser
- Save the csv file in the LearnLet/Programs/Datasets/ directory
- Option 2
- Go to the set you wish to study on quizlet
- Open up web console through inspect
- Copy the JS script(QuizletTOcsv.js) from the Programs directory and run it in the web console
- Copy the output and save it in your text editor
- Save the file as InsertName.csv in the
LearnLet/Programs/Datasets/directory
Navigate into the programs directory and run the following for Quiz: (switch InsertName with the set you want to study)
python LearnLetQuiz.py ./Datasets/InsertName.csv
Navigate into the programs directory and run the following for Match: (switch InsertName with the set you want to study)
python LearnLetMatch.py ./Datasets/InsertName.csv
- Open the link that the terminal outputs and start studying!