├── .gitignore ├── LICENSE.md ├── README.md ├── img └── tcurtsni.png ├── requirements.txt └── tcurtsni.py /.gitignore: -------------------------------------------------------------------------------- 1 | venv/ 2 | __pycache__/* 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-crypt-keeper/tcurtsni/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-crypt-keeper/tcurtsni/HEAD/README.md -------------------------------------------------------------------------------- /img/tcurtsni.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-crypt-keeper/tcurtsni/HEAD/img/tcurtsni.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-crypt-keeper/tcurtsni/HEAD/requirements.txt -------------------------------------------------------------------------------- /tcurtsni.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the-crypt-keeper/tcurtsni/HEAD/tcurtsni.py --------------------------------------------------------------------------------