├── .gitignore ├── LICENSE.md ├── README.md ├── example.py ├── goompy.png ├── goompy ├── .gitignore ├── __init__.py └── key.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | GooMPy.egg-info 2 | build 3 | dist 4 | mapscache 5 | *.swp 6 | 7 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/GooMPy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/GooMPy/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/GooMPy/HEAD/example.py -------------------------------------------------------------------------------- /goompy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/GooMPy/HEAD/goompy.png -------------------------------------------------------------------------------- /goompy/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.swp 3 | -------------------------------------------------------------------------------- /goompy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/GooMPy/HEAD/goompy/__init__.py -------------------------------------------------------------------------------- /goompy/key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/GooMPy/HEAD/goompy/key.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/simondlevy/GooMPy/HEAD/setup.py --------------------------------------------------------------------------------