├── .flake8 ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── __init__.py ├── chart_progress.py ├── manifest.json ├── progress_stats ├── __init__.py ├── compute.py └── graphs.py ├── release_anki21.sh ├── requirements.txt ├── screenshots ├── learned_cards.png └── net_matured_cards.png ├── test.py └── tests ├── __init__.py └── test_basic.py /.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length = 120 3 | ignore = F723 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/__init__.py -------------------------------------------------------------------------------- /chart_progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/chart_progress.py -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/manifest.json -------------------------------------------------------------------------------- /progress_stats/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/progress_stats/__init__.py -------------------------------------------------------------------------------- /progress_stats/compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/progress_stats/compute.py -------------------------------------------------------------------------------- /progress_stats/graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/progress_stats/graphs.py -------------------------------------------------------------------------------- /release_anki21.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/release_anki21.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | flake8==3.7.7 2 | pytest==4.6.2 -------------------------------------------------------------------------------- /screenshots/learned_cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/screenshots/learned_cards.png -------------------------------------------------------------------------------- /screenshots/net_matured_cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/screenshots/net_matured_cards.png -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/test.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthayes/anki_progress_stats/HEAD/tests/test_basic.py --------------------------------------------------------------------------------