Flappy Bello is a simple Python implementation of a Flappy Bird-style game. The goal is to keep the bird character flying without hitting obstacles or the ground. This repository includes all required game assets (graphics and audio) and a main game script (bello.py) to run the game.
- Classic tap-to-fly mechanic
- Animated graphics and sound effects
- Easy to run with minimal setup
- Designed for fun and learning game development with Python
- Python 3.7 or higher
- Clone the repository:
git clone https://github.com/yxngrbree/flappy-bello.git
Navigate into the project directory:
cd flappy-bello
Install dependencies:
pip install pygame
If you use a virtual environment:
python -m venv venv
source venv/bin/activate # Mac/Linux
venv\Scripts\activate # Windows
pip install pygame
Running the Game To start the game, run:
python bello.py
Use the spacebar (or click) to make the bird flap and stay airborne.