├── .github └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── holeinfo ├── __init__.py └── src.py ├── img └── terminal-screenshot.png ├── requirements.txt └── setup.py /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnk400/holeInfo/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnk400/holeInfo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnk400/holeInfo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnk400/holeInfo/HEAD/README.md -------------------------------------------------------------------------------- /holeinfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /holeinfo/src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnk400/holeInfo/HEAD/holeinfo/src.py -------------------------------------------------------------------------------- /img/terminal-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnk400/holeInfo/HEAD/img/terminal-screenshot.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnk400/holeInfo/HEAD/setup.py --------------------------------------------------------------------------------