Automates the creation of Anki cards for studying Hebrew-English
Anki is a software to aid studying, largely used by language learners and Medicine students - it helps memorizing a lot of information
https://pypi.org/project/AnkiOTron/
This library helps the creation of Anki Decks to study Hebrew, however it could be easily extended for other languagues
It receives a list of words, either via a list or using a .csv file, calls an API asynchronously, create the deck and return it.
Install it using Pip
pip install AnkiOTron
Create an AnkiOTron instance passing the list of words that you wish to translate
from AnkiOTron import AnkiOTron
list = ["שלום", "להיתרות"]
instance = AnkiOTron(word_list=list)
call translate method
instance.translate()
generate the deck using the path
instance.generate_deck()