Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 886 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 886 Bytes

SnakeGame

classic snake game gui, built with python with increasing speed.

Use arrow keys to move Up, Down, Left & Right. If the snake touches itself or the boundary the game is over. For the best experience please turn on your device audio as an audio clip plays when the snake successfully eats it food or when the snake dies. There are two buttons on the scoring page for playing again and quitting the game.

Built With

  • Python version 3.8.0

How to run ?

Clone the repo

$ git clone https://github.com/shahan007/SnakeGame

Set up the environment

$ python -m venv venv
$ source venv/Scripts/activate
(venv) $ pip install -r requirements.txt

Setting up database (optional as it has been already created)

(venv) $ python create_table.py

Start the game

(venv) $ python run.py