I did not make this tutorial or come up with this code but I really enjoyed the tutorial. To help others I am putting up a working version on github. This will help others see how it works if they are having trouble. Props to Amir Rachum for the tutorial.
python 3.7 tested working on Windows
- follow tutorial at snek tutorial by Amir Rachum
- create and activate a virtualenv
python -m venv venv
venv\Scripts\activate # Windows
venv/bin/activate # Linux
pip install docopt
- go to snek folder and install
cd snek
python setup.py develop # install snek
- go to cute_snek and install
cd cute_snek # from root folder otherwise cd ../cute_snek
python setup.py develop # install snek
- test out functionality
snek
snek --type cute
snek --type fancy
thanks Amir Rachum looking forward to seeing more tutorials