A cli for snake game in python using graph algo and vanilla python without using no gui libraries nothing only logic and python.
You can just install from pypi.
pip install bashsnakegamefrom bashsnakegame.game import SnakeGame
def main():
#width will be the first arg and height will be the second arg based on that i will draw the cells in the terminal
game = SnakeGame(10,20)
game.start_game()
main()
Commands:
shell run the python file and your game starts.
This project is licensed under the MIT License.
