├── .gitignore ├── MANIFEST.in ├── README.rst ├── README.sdist.txt ├── doc ├── _static │ └── sgfmill.css_t ├── _templates │ └── wholetoc.html ├── ascii_boards.rst ├── boards.rst ├── changes.rst ├── common.rst ├── conf.py ├── contact.rst ├── encoding.rst ├── examples.rst ├── glossary.rst ├── index.rst ├── install.rst ├── intro.rst ├── licence.rst ├── parsing.rst ├── porting.rst ├── properties.rst ├── property_types.rst ├── python-inv.txt ├── sgf.rst ├── sgf_board_interface.rst ├── sgf_games.rst ├── sgf_moves.rst ├── sgfmill_package.rst └── tree_nodes.rst ├── examples ├── show_sgf.py └── split_sgf_collection.py ├── release_sgfmill.py ├── run_sgfmill_testsuite ├── setup.py ├── sgfmill ├── __init__.py ├── ascii_boards.py ├── boards.py ├── common.py ├── sgf.py ├── sgf_board_interface.py ├── sgf_grammar.py ├── sgf_moves.py └── sgf_properties.py ├── sgfmill_tests ├── __init__.py ├── board_test_data.py ├── board_tests.py ├── common_tests.py ├── run_sgfmill_testsuite.py ├── sgf_grammar_tests.py ├── sgf_moves_tests.py ├── sgf_properties_tests.py ├── sgf_tests.py ├── sgfmill_test_support.py └── test_framework.py └── test_installed_sgfmill.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | /doc/_build 3 | /release_sgfmill.conf 4 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/README.rst -------------------------------------------------------------------------------- /README.sdist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/README.sdist.txt -------------------------------------------------------------------------------- /doc/_static/sgfmill.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/_static/sgfmill.css_t -------------------------------------------------------------------------------- /doc/_templates/wholetoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/_templates/wholetoc.html -------------------------------------------------------------------------------- /doc/ascii_boards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/ascii_boards.rst -------------------------------------------------------------------------------- /doc/boards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/boards.rst -------------------------------------------------------------------------------- /doc/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/changes.rst -------------------------------------------------------------------------------- /doc/common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/common.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/contact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/contact.rst -------------------------------------------------------------------------------- /doc/encoding.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/encoding.rst -------------------------------------------------------------------------------- /doc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/examples.rst -------------------------------------------------------------------------------- /doc/glossary.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/glossary.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/install.rst -------------------------------------------------------------------------------- /doc/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/intro.rst -------------------------------------------------------------------------------- /doc/licence.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/licence.rst -------------------------------------------------------------------------------- /doc/parsing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/parsing.rst -------------------------------------------------------------------------------- /doc/porting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/porting.rst -------------------------------------------------------------------------------- /doc/properties.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/properties.rst -------------------------------------------------------------------------------- /doc/property_types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/property_types.rst -------------------------------------------------------------------------------- /doc/python-inv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/python-inv.txt -------------------------------------------------------------------------------- /doc/sgf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/sgf.rst -------------------------------------------------------------------------------- /doc/sgf_board_interface.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/sgf_board_interface.rst -------------------------------------------------------------------------------- /doc/sgf_games.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/sgf_games.rst -------------------------------------------------------------------------------- /doc/sgf_moves.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/sgf_moves.rst -------------------------------------------------------------------------------- /doc/sgfmill_package.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/sgfmill_package.rst -------------------------------------------------------------------------------- /doc/tree_nodes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/doc/tree_nodes.rst -------------------------------------------------------------------------------- /examples/show_sgf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/examples/show_sgf.py -------------------------------------------------------------------------------- /examples/split_sgf_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/examples/split_sgf_collection.py -------------------------------------------------------------------------------- /release_sgfmill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/release_sgfmill.py -------------------------------------------------------------------------------- /run_sgfmill_testsuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/run_sgfmill_testsuite -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/setup.py -------------------------------------------------------------------------------- /sgfmill/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.1.1" 2 | -------------------------------------------------------------------------------- /sgfmill/ascii_boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill/ascii_boards.py -------------------------------------------------------------------------------- /sgfmill/boards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill/boards.py -------------------------------------------------------------------------------- /sgfmill/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill/common.py -------------------------------------------------------------------------------- /sgfmill/sgf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill/sgf.py -------------------------------------------------------------------------------- /sgfmill/sgf_board_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill/sgf_board_interface.py -------------------------------------------------------------------------------- /sgfmill/sgf_grammar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill/sgf_grammar.py -------------------------------------------------------------------------------- /sgfmill/sgf_moves.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill/sgf_moves.py -------------------------------------------------------------------------------- /sgfmill/sgf_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill/sgf_properties.py -------------------------------------------------------------------------------- /sgfmill_tests/__init__.py: -------------------------------------------------------------------------------- 1 | # sgfmill_tests package 2 | -------------------------------------------------------------------------------- /sgfmill_tests/board_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill_tests/board_test_data.py -------------------------------------------------------------------------------- /sgfmill_tests/board_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill_tests/board_tests.py -------------------------------------------------------------------------------- /sgfmill_tests/common_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill_tests/common_tests.py -------------------------------------------------------------------------------- /sgfmill_tests/run_sgfmill_testsuite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill_tests/run_sgfmill_testsuite.py -------------------------------------------------------------------------------- /sgfmill_tests/sgf_grammar_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill_tests/sgf_grammar_tests.py -------------------------------------------------------------------------------- /sgfmill_tests/sgf_moves_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill_tests/sgf_moves_tests.py -------------------------------------------------------------------------------- /sgfmill_tests/sgf_properties_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill_tests/sgf_properties_tests.py -------------------------------------------------------------------------------- /sgfmill_tests/sgf_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill_tests/sgf_tests.py -------------------------------------------------------------------------------- /sgfmill_tests/sgfmill_test_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill_tests/sgfmill_test_support.py -------------------------------------------------------------------------------- /sgfmill_tests/test_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/sgfmill_tests/test_framework.py -------------------------------------------------------------------------------- /test_installed_sgfmill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattheww/sgfmill/HEAD/test_installed_sgfmill.py --------------------------------------------------------------------------------