├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── examples ├── ff4_ex.sgf ├── meijin.sgf └── print1.sgf ├── setup.cfg ├── setup.py ├── sgf.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/sgf/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/sgf/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/sgf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/sgf/HEAD/README.md -------------------------------------------------------------------------------- /examples/ff4_ex.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/sgf/HEAD/examples/ff4_ex.sgf -------------------------------------------------------------------------------- /examples/meijin.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/sgf/HEAD/examples/meijin.sgf -------------------------------------------------------------------------------- /examples/print1.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/sgf/HEAD/examples/print1.sgf -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/sgf/HEAD/setup.py -------------------------------------------------------------------------------- /sgf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/sgf/HEAD/sgf.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jtauber/sgf/HEAD/test.py --------------------------------------------------------------------------------