An open API service indexing awesome lists of open source software.

https://github.com/mpcodewriter21/snake-pygame

:snake: A snake game written in Python using the Pygame library
https://github.com/mpcodewriter21/snake-pygame

codewriter21 game pygame python snake

Last synced: 12 months ago
JSON representation

:snake: A snake game written in Python using the Pygame library

Awesome Lists containing this project

README

          

# Snake Eater
A snake game written in Python using the PyGame library.

## Installing
To run this game you need Python installed on your machine. (Python>=3.6)

You can visit [python.org](https://python.org) and download python for your operating
system or use your favorite package manager to install Python.

Clone the repository and run the following in the terminal to install the requirements:
```bash
python -m pip install -r requirements.txt
```

## Running the application
You can run the game just like any other Python script (.py) file.
```bash
python3 snake-game.py
```

## Prerequisites
* [Python](https://www.python.org)
* [Pygame](https://www.pygame.org/wiki/GettingStarted), an open-source Python library
for making multimedia applications
* [log21](https://github.com/MPCodeWriter21/log21), an open-source library that provides
a simple and beautiful way of logging.

## Authors

* **Rajat Dipta Biswas** - *Initial work*
* **Mehrad Pooryoussof** - *Updated work*

### CodeWriter21

Updated by Mehrad Pooryoussof.

Telegram Channel: [@CodeWriter](https://t.me/CodeWriter21)

Blog: [CodeWriter21.blogsky.com](http://CodeWriter21.blogsky.com)

## Acknowledgements
* [Pygame Documentations](https://www.pygame.org/docs/)
* [Udemy: Python Game Development](https://www.udemy.com/python-game-development-creating-a-snake-game-from-scratch/learn/v4/overview)