You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1 year ago | |
---|---|---|
README.md | 1 year ago | |
eventsdb.yaml | 1 year ago | |
requirements.txt | 1 year ago | |
theodds.py | 1 year ago |
README.md
Something with numbers, bad with names
Requirements
- Python 3.0<
- PyYAML 5.1<
Status
Create a YAML database, add abbreviations from the terminal, start a quiz to study
Usage
coming soon
TODO
- Import db form YAML file
- compare more then 2
- build UI
- show list of options to compare
- compare 1 chosen entry with all others
- matrix/ ranking of all options
Troubleshooting
module 'yaml' has no attribute 'FullLoader'
The 'Fullloader' class is only available in PyYAML 5.1 and later. You can check your current PyYAML version as followed:
python3
>>> import yaml
>>> yaml.__version__
'3.13'
You can update your version with pip:
pip3 install -U PyYAML