/pythongame

Python Gamming.

Primary LanguagePython

Python Gamming tutorials

Following tutorials from this guide and this guide.

How to play?

Clone this repo (get all games):

sudo apt-get install -y git
git clone https://github.com/videlanicolas/pythongame.git

Or download the game you want to play:

sudo apt-get install -y subversion
svn export https://github.com/videlanicolas/pythongame/trunk/<Game's Folder>
cd <Game's Folder>
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
./<game's name>.py

Example:

sudo apt-get install -y subversion
svn export https://github.com/videlanicolas/pythongame/trunk/Tetromino
cd Tetromino
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt
./tetromino.py

Have fun!

Game screenshots

Memory Puzzle

Slide Puzzle

Simulate (a.k.a. Simon Says)

Wormy (a.k.a. Snake)

Tetromino (a.k.a. Tetris)