├── .gitignore ├── LICENSE ├── README.md ├── gpl.txt ├── sgfanalyze.py └── sgftools ├── __init__.py ├── annotations.py ├── gotools.py ├── leela.py ├── progressbar.py ├── sgflib.py └── typelib.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightvector/leela-analysis/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightvector/leela-analysis/HEAD/README.md -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightvector/leela-analysis/HEAD/gpl.txt -------------------------------------------------------------------------------- /sgfanalyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightvector/leela-analysis/HEAD/sgfanalyze.py -------------------------------------------------------------------------------- /sgftools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sgftools/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightvector/leela-analysis/HEAD/sgftools/annotations.py -------------------------------------------------------------------------------- /sgftools/gotools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightvector/leela-analysis/HEAD/sgftools/gotools.py -------------------------------------------------------------------------------- /sgftools/leela.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightvector/leela-analysis/HEAD/sgftools/leela.py -------------------------------------------------------------------------------- /sgftools/progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightvector/leela-analysis/HEAD/sgftools/progressbar.py -------------------------------------------------------------------------------- /sgftools/sgflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightvector/leela-analysis/HEAD/sgftools/sgflib.py -------------------------------------------------------------------------------- /sgftools/typelib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lightvector/leela-analysis/HEAD/sgftools/typelib.py --------------------------------------------------------------------------------