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
- Host: GitHub
- URL: https://github.com/mpcodewriter21/snake-pygame
- Owner: MPCodeWriter21
- Created: 2021-04-18T05:47:57.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-06-29T11:34:14.000Z (almost 2 years ago)
- Last Synced: 2025-04-14T17:16:25.740Z (about 1 year ago)
- Topics: codewriter21, game, pygame, python, snake
- Language: Python
- Homepage:
- Size: 37.1 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)