This is a simple Space Invaders game created using Pygame library in Python.
Python 3.x
Pygame library
To install Pygame library, run the following command:
pip install pygame
To run the game, simply execute the file space_invaders.py using Python:
python space_invaders.py
The objective of the game is to destroy all the enemies by shooting them with bullets from the spaceship. The player can move the spaceship left and right using the arrow keys and shoot bullets using the space key. The game ends when an enemy reaches the bottom of the screen or collides with the spaceship.
This game was created following the tutorial on freeCodeCamp.org.