Pygame
Python module for writing video games
Pygame is a cross-platform library of Python modules designed for writing video games. It includes computer graphics and sound libraries designed to be used with the Python programming language.
01History
Pygame was originally written by Pete Shinners to replace PySDL after its development stalled. It has been a community project since 2000 and is released under the free software GNU Lesser General Public License (which "provides for Pygame to be distributed with open source and commercial software").

02Development of version 2
Pygame version 2 was planned as "Pygame Reloaded" in 2009, but development and maintenance of Pygame completely stopped until the end of 2016 with version 1.9.1. After the release of version 1.9.5 in March 2019, development of a new version 2 was active on the roadmap.
Pygame 2.0 released on 28 October 2020, Pygame's 20th anniversary.
03Features
Core Features
Pygame uses the Simple DirectMedia Layer (SDL) library, with the intention of allowing real-time computer game development without the low-level mechanics of the C programming language and its derivatives. This is based on the assumption that the most expensive functions inside games can be abstracted from the game logic, making it possible to use a high-level programming language, such as Python, to structure the game.
Other features that SDL does have include vector math, collision detection, 2D sprite scene graph management, MIDI support, camera, pixel-array manipulation, transformations, filtering, advanced freetype font support, and drawing.
SDL also supports audio, which Pygame exposes via the Mixer module.
Applications using Pygame can run on Android phones and tablets with the use of Pygame Subset for Android (pgs4a). Sound, vibration, keyboard, and accelerometer are supported on Android.
Pygame Community Edition
Following disagreements between former core developers and the repository owner, a fork known as pygame-ce (Community Edition) was created.
This fork was originally created as a means to add several features that were, at the time, wanted but missing in the core release of Pygame. These features include support for Python 3.11, faster surface blitting, support for WebAssembly (WASM), and several smaller optimizations and feature additions. This fork also commenced a new, more democratic governing body for pygame-ce aimed at solving the approval slowdowns present in the core version.
Since this initial release, the community edition has added several new features not present in the core version, including support for the latest versions of Python (all the way up to 3.15), and continued optimizations. Ongoing work incudes migrating the community edition to run on SDL3, which as the team notes, primarily differs in interface from its predecessor, SDL2, in how it handles audio.
04Community
There is a regular competition, called PyWeek, to write games using Python (and usually but not necessarily, Pygame). The community has created many tutorials for Pygame.
Pygame also has a community-led subreddit on Reddit, where developers post their creations and ideas, and a Discord community server, where people discuss various aspects of the platform.
05Sample code
The following code makes an image of a raccoon ("raccoon.png") bounce when hitting an edge.
import pygame, sys pygame.init() screen = pygame.display.set_mode((1280, 720)) clock = pygame.time.Clock() clock.tick(30) black = 0, 0, 0 raccoon = pygame.image.load("raccoon.png") raccoon = pygame.transform.scale(raccoon, (200, 140)) raccoonrect = raccoon.get_rect() velocity = [1, 1] while True: raccoonrect = raccoonrect.move(velocity) if raccoonrect.left < 0 or raccoonrect.right > 1280: velocity[0] = -velocity[0] raccoon = pygame.transform.flip(raccoon, True, False) if raccoonrect.top < 0 or raccoonrect.bottom > 720: velocity[1] = -velocity[1] for event in pygame.event.get(): if event.type == pygame.QUIT: sys.exit() # screen update screen.fill(black) screen.blit(raccoon, raccoonrect) pygame.display.flip()06Notable games using Pygame
Sources and credits
This article is adapted from the Wikipedia article “Pygame”, written by its contributors and licensed under CC BY-SA 4.0. Fathomly has changed the layout, removed citation markers, navigation and maintenance notices, and adjusted punctuation. This adapted version is shared under the same license. For references, see the original article.
Images, from Wikimedia Commons:
- Pygame - Hello World.png by Phobulos, CC0
Fathomly is not affiliated with or endorsed by the Wikimedia Foundation. Spotted a problem? Tell us.