This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Generate a comma separated list of your DuiLingo vocabulary words and translations to create | |
flashcards in Quizlet. | |
Command: `python3 main.py -u <username> -p <password> -sl <source-language> -tl <target-language>` | |
Ex: `python3 main.py -u Seb001 -p 'SuperStrongPassword1' -sl de -tl en` | |
''' | |
import argparse | |
from typing import Optional |