Skip to main content
pygame

AppVeyorBuild PyPiVersion PyPiLicense Python3 GithubCommits BlackFormatBadge

Pygame is a free and open-source cross-platform library for the development of multimedia applications like video games using Python. It uses the Simple DirectMedia Layer library and several other popular libraries to abstract the most common functions, making writing these programs a more intuitive task.

We need your help to make pygame the best it can be! New contributors are welcome.

Installation

Before installing pygame, you must check that Python is installed on your machine. To find out, open a command prompt (if you have Windows) or a terminal (if you have MacOS or Linux) and type this:

python --version

If a message such as “Python 3.8.10” appears, it means that Python is correctly installed. If an error message appears, it means that it is not installed yet. You must then go to the official website to download it.

Once Python is installed, you have to perform a final check: you have to see if pip is installed. Generally, pip is pre-installed with Python but we are never sure. Same as for Python, type the following command:

pip --version

If a message such as “pip 20.0.2 from /usr/lib/python3/dist-packages/pip (python 3.8)” appears, you are ready to install pygame! To install it, enter this command:

pip install pygame

Once pygame is installed, quickly test your library by entering the following command, which opens one of the many example games that comes pre-installed:

python3 -m pygame.examples.aliens

If this doesn’t work, the Getting Started section of the official website has more information for platform specific issues, such as adding python to your machine’s PATH settings

Help

If you are just getting started with pygame, you should be able to get started fairly quickly. Pygame comes with many tutorials and introductions. There is also full reference documentation for the entire library. Browse the documentation on the docs page. You can also browse the documentation locally by running python -m pygame.docs in your terminal. If the docs aren’t found locally, it’ll launch the online website instead.

The online documentation stays up to date with the development version of pygame on GitHub. This may be a bit newer than the version of pygame you are using. To upgrade to the latest full release, run pip install pygame --upgrade in your terminal.

Best of all, the examples directory has many playable small programs which can get you started playing with the code right away.

Features

Pygame is a powerful library for game development, offering a wide range of features to simplify your coding journey. Let’s delve into what pygame has to offer:

Graphics - With pygame, creating dynamic and engaging graphics has never been easier. The library provides simple yet effective tools for 2D graphics and animation, including support for images, rectangles, and polygon shapes. Whether you’re a seasoned game developer or just starting out, pygame has you covered.

Sound - Pygame also includes support for playing and manipulating sound and music, making it easy to add sound effects and background music to your games. With support for WAV, MP3, and OGG file formats, you have plenty of options to choose from.

Input - Pygame provides intuitive functions for handling keyboard, mouse, and joystick input, allowing you to quickly and easily implement player controls in your games. No more struggling with complex input code, pygame makes it simple.

Game Development - Lastly, pygame provides a comprehensive suite of tools and features specifically designed for game development. From collision detection to sprite management, pygame has everything you need to create exciting and engaging games. Whether you’re building a platformer, puzzle game, or anything in between, pygame has you covered.

Building From Source

If you want to use features that are currently in development, or you want to contribute to pygame, you will need to build pygame locally from its source code, rather than pip installing it.

Installing from source is fairly automated. The most work will involve compiling and installing all the pygame dependencies. Once that is done, run the setup.py script which will attempt to auto-configure, build, and install pygame.

Much more information about installing and compiling is available on the Compilation wiki page.

Contribute

Credits

Thanks to everyone who has helped contribute to this library. Special thanks are also in order.

  • Marcus Von Appen: many changes, and fixes, 1.7.1+ freebsd maintainer

  • Lenard Lindstrom: the 1.8+ windows maintainer, many changes, and fixes

  • Brian Fisher for svn auto builder, bug tracker and many contributions

  • Rene Dudfield: many changes, and fixes, 1.7+ release manager/maintainer

  • Phil Hassey for his work on the pygame.org website

  • DR0ID for his work on the sprite module

  • Richard Goedeken for his smoothscale function

  • Ulf Ekström for his pixel perfect collision detection code

  • Pete Shinners: original author

  • David Clark for filling the right-hand-man position

  • Ed Boraas and Francis Irving: Debian packages

  • Maxim Sobolev: FreeBSD packaging

  • Bob Ippolito: MacOS and OS X porting (much work!)

  • Jan Ekhol, Ray Kelm, and Peter Nicolai: putting up with early design ideas

  • Nat Pryce for starting our unit tests

  • Dan Richter for documentation work

  • TheCorruptor for his incredible logos and graphics

  • Nicholas Dudfield: many test improvements

  • Alex Folkner for pygame-ctypes

Thanks to those sending in patches and fixes: Niki Spahiev, Gordon Tyler, Nathaniel Pryce, Dave Wallace, John Popplewell, Michael Urman, Andrew Straw, Michael Hudson, Ole Martin Bjoerndalen, Herve Cauwelier, James Mazer, Lalo Martins, Timothy Stranex, Chad Lester, Matthias Spiller, Bo Jangeborg, Dmitry Borisov, Campbell Barton, Diego Essaya, Eyal Lotem, Regis Desgroppes, Emmanuel Hainry, Randy Kaelber Matthew L Daniel, Nirav Patel, Forrest Voight, Charlie Nolan, Frankie Robertson, John Krukoff, Lorenz Quack, Nick Irvine, Michael George, Saul Spatz, Thomas Ibbotson, Tom Rothamel, Evan Kroske, Cambell Barton.

And our bug hunters above and beyond: Angus, Guillaume Proux, Frank Raiser, Austin Henry, Kaweh Kazemi, Arturo Aldama, Mike Mulcheck, Michael Benfield, David Lau

There’s many more folks out there who’ve submitted helpful ideas, kept this project going, and basically made our life easier. Thanks!

Many thank you’s for people making documentation comments, and adding to the pygame.org wiki.

Also many thanks for people creating games and putting them on the pygame.org website for others to learn from and enjoy.

Lots of thanks to James Paige for hosting the pygame bugzilla.

Also a big thanks to Roger Dingledine and the crew at SEUL.ORG for our excellent hosting.

Dependencies

Pygame is obviously strongly dependent on SDL and Python. It also links to and embeds several other smaller libraries. The font module relies on SDL_ttf, which is dependent on freetype. The mixer (and mixer.music) modules depend on SDL_mixer. The image module depends on SDL_image, which also can use libjpeg and libpng. The transform module has an embedded version of SDL_rotozoom for its own rotozoom function. The surfarray module requires the Python NumPy package for its multidimensional numeric arrays. Dependency versions:

CPython

>= 3.6 (Or use PyPy3)

SDL

>= 2.0.8

SDL_mixer

>= 2.0.0

SDL_image

>= 2.0.2

SDL_ttf

>= 2.0.11

SDL_gfx

(Optional, vendored in)

NumPy

>= 1.6.2 (Optional)

License

This library is distributed under GNU LGPL version 2.1, which can be found in the file docs/LGPL.txt. We reserve the right to place future versions of this library under a different license.

This basically means you can use pygame in any project you want, but if you make any changes or additions to pygame itself, those must be released with a compatible license (preferably submitted back to the pygame project). Closed source and commercial games are fine.

The programs in the examples subdirectory are in the public domain.

See docs/licenses for licenses of dependencies.

Release files for pygame 2.6.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for pygame 2.6.1
File Size Uploaded
pygame-2.6.1.tar.gz 14.8 MB Details

Built distributions (wheels)

Table of built distributions (wheels) for pygame 2.6.1
File
pygame-2.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
pygame-2.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-32 Details
pygame-2.6.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.15+ x86-64 Details
pygame-2.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64 Details
pygame-2.6.1-pp36-pypy36_pp73-win32.whl PyPy 3.6 PyPy 3.6 7.3 Windows x86-32 Details
pygame-2.6.1-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
pygame-2.6.1-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
pygame-2.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
pygame-2.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-32 Details
pygame-2.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
pygame-2.6.1-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
pygame-2.6.1-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
pygame-2.6.1-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
pygame-2.6.1-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
pygame-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
pygame-2.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32 Details
pygame-2.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
pygame-2.6.1-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
pygame-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.9+ x86-64 Details
pygame-2.6.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
pygame-2.6.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
pygame-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
pygame-2.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32 Details
pygame-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
pygame-2.6.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
pygame-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
pygame-2.6.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
pygame-2.6.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
pygame-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
pygame-2.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32 Details
pygame-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
pygame-2.6.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
pygame-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
pygame-2.6.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
pygame-2.6.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
pygame-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
pygame-2.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32 Details
pygame-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
pygame-2.6.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
pygame-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
pygame-2.6.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
pygame-2.6.1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
pygame-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
pygame-2.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32 Details
pygame-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
pygame-2.6.1-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
pygame-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
pygame-2.6.1-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
pygame-2.6.1-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
pygame-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
pygame-2.6.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Details
pygame-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
pygame-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
pygame-2.6.1-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
pygame-2.6.1-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
pygame-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
pygame-2.6.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Details
pygame-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
pygame-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 760.0 MB

Release files / pygame-2.6.1.tar.gz

Download URL pygame-2.6.1.tar.gz
Size 14.8 MB
Tags Source
SHA-256 checksum
How to use checksums
56fb02ead529cee00d415c3e007f75e0780c655909aaa8e8bf616ee09c9feb1f
BLAKE2b-256 checksum
How to use checksums
49cc08bba60f00541f62aaa252ce0cfbd60aebd04616c0b9574f755b583e45ae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pygame-2.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 13.9 MB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
7103c60939bbc1e05cfc7ba3f1d2ad3bbf103b7828b82a7166a9ab6f51950146
BLAKE2b-256 checksum
How to use checksums
8b115519d3dfc8046822289dbd8ffde407e30ddb56b6f4a78ca39121a545a322
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pygame-2.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Size 14.2 MB
Tags Linux glibc 2.17+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
17498a2b043bc0e795faedef1b081199c688890200aef34991c1941caa2d2c89
BLAKE2b-256 checksum
How to use checksums
b8a5ef76a85da2cb7bc6b9fc54b0a56cf75f244c8adcd16bab8d0d9d7398bfed
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl

Download URL pygame-2.6.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Size 12.8 MB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
bbb7167c92103a2091366e9af26d4914ba3776666e8677d3c93551353fffa626
BLAKE2b-256 checksum
How to use checksums
9a2f8458240c8908a550254c80b64f8c03d6d46156664df3515a1331ae730b4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl

Download URL pygame-2.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Size 12.8 MB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
b7f9f8e6f76de36f4725175d686601214af362a4f30614b4dae2240198e72e6f
BLAKE2b-256 checksum
How to use checksums
0656ea9c785258da9f6da939abe8f961c8ce09a8177524a78f94932fbcb2c5d3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-pp36-pypy36_pp73-win32.whl

Download URL pygame-2.6.1-pp36-pypy36_pp73-win32.whl
Size 10.4 MB
Tags PyPy 3.6 PyPy 3.6 7.3 Windows x86-32
SHA-256 checksum
How to use checksums
4a8ea113b1bf627322a025a1a5a87e3818a7f55ab3a4077ff1ae5c8c60576614
BLAKE2b-256 checksum
How to use checksums
c1130e6c0d38ac173edc7e274663f4ea9358a0aa5b330a82402a603a3edac824
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 PyPy/7.3.2

Release files / pygame-2.6.1-cp313-cp313-win_amd64.whl

Download URL pygame-2.6.1-cp313-cp313-win_amd64.whl
Size 10.6 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
813af4fba5d0b2cb8e58f5d95f7910295c34067dcc290d34f1be59c48bd1ea6a
BLAKE2b-256 checksum
How to use checksums
7e1117f7f319ca91824b86557e9303e3b7a71991ef17fd45286bf47d7f0a38e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.13.0rc1

Release files / pygame-2.6.1-cp313-cp313-win32.whl

Download URL pygame-2.6.1-cp313-cp313-win32.whl
Size 10.2 MB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
3acd8c009317190c2bfd81db681ecef47d5eb108c2151d09596d9c7ea9df5c0e
BLAKE2b-256 checksum
How to use checksums
a60629e939b34d3f1354738c7d201c51c250ad7abefefaf6f8332d962ff67c4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.13.0rc1

Release files / pygame-2.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pygame-2.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 14.0 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ef07c0103d79492c21fced9ad68c11c32efa6801ca1920ebfd0f15fb46c78b1c
BLAKE2b-256 checksum
How to use checksums
85b5aa23aa2e70bcba42c989c02e7228273c30f3b44b9b264abb93eaeff43ad7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pygame-2.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Size 14.3 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
4c1623180e70a03c4a734deb9bac50fc9c82942ae84a3a220779062128e75f3b
BLAKE2b-256 checksum
How to use checksums
3b872851a564e40a2dad353f1c6e143465d445dab18a95281f9ea458b94f3608
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pygame-2.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 13.6 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
27eb17e3dc9640e4b4683074f1890e2e879827447770470c2aba9f125f74510b
BLAKE2b-256 checksum
How to use checksums
9f8f617a1196e31ae3b46be6949fbaa95b8c93ce15e0544266198c2266cc1b4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp313-cp313-macosx_11_0_arm64.whl

Download URL pygame-2.6.1-cp313-cp313-macosx_11_0_arm64.whl
Size 12.4 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2a3a1288e2e9b1e5834e425bedd5ba01a3cd4902b5c2bff8ed4a740ccfe98171
BLAKE2b-256 checksum
How to use checksums
0ec69cb315de851a7682d9c7568a41ea042ee98d668cb8deadc1dafcab6116f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp313-cp313-macosx_10_13_x86_64.whl

Download URL pygame-2.6.1-cp313-cp313-macosx_10_13_x86_64.whl
Size 13.1 MB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
ae6039f3a55d800db80e8010f387557b528d34d534435e0871326804df2a62f2
BLAKE2b-256 checksum
How to use checksums
e191718acf3e2a9d08a6ddcc96bd02a6f63c99ee7ba14afeaff2a51c987df0b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp312-cp312-win_amd64.whl

Download URL pygame-2.6.1-cp312-cp312-win_amd64.whl
Size 10.6 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
3a9e7396be0d9633831c3f8d5d82dd63ba373ad65599628294b7a4f8a5a01a65
BLAKE2b-256 checksum
How to use checksums
5f907d766d54bb95939725e9a9361f9c06b0cfbe3fe100aa35400f0a461a278a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.0

Release files / pygame-2.6.1-cp312-cp312-win32.whl

Download URL pygame-2.6.1-cp312-cp312-win32.whl
Size 10.3 MB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
84fc4054e25262140d09d39e094f6880d730199710829902f0d8ceae0213379e
BLAKE2b-256 checksum
How to use checksums
f3428ea2a6979e6fa971702fece1747e862e2256d4a8558fe0da6364dd946c53
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.12.0

Release files / pygame-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pygame-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 14.0 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
1206125f14cae22c44565c9d333607f1d9f59487b1f1432945dfc809aeaa3e88
BLAKE2b-256 checksum
How to use checksums
b9f2d31e6ad42d657af07be2ffd779190353f759a07b51232b9e1d724f2cda46
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pygame-2.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Size 14.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
33006f784e1c7d7e466fcb61d5489da59cc5f7eb098712f792a225df1d4e229d
BLAKE2b-256 checksum
How to use checksums
fdcab015586a450db59313535662991b34d24c1f0c0dc149cc5f496573900f4e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pygame-2.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 13.6 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c47a6938de93fa610accd4969e638c2aebcb29b2fca518a84c3a39d91ab47116
BLAKE2b-256 checksum
How to use checksums
06be3ed337583f010696c3b3435e89a74fb29d0c74d0931e8f33c0a4246307a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp312-cp312-macosx_11_0_arm64.whl

Download URL pygame-2.6.1-cp312-cp312-macosx_11_0_arm64.whl
Size 12.4 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c8040ea2ab18c6b255af706ec01355c8a6b08dc48d77fd4ee783f8fc46a843bf
BLAKE2b-256 checksum
How to use checksums
cd5377ccbc384b251c6e34bfd2e734c638233922449a7844e3c7a11ef91cee39
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl

Download URL pygame-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl
Size 13.1 MB
Tags CPython 3.12 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
4ee7f2771f588c966fa2fa8b829be26698c9b4836f82ede5e4edc1a68594942e
BLAKE2b-256 checksum
How to use checksums
92162c602c332f45ff9526d61f6bd764db5096ff9035433e2172e2d2cadae8db
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp311-cp311-win_amd64.whl

Download URL pygame-2.6.1-cp311-cp311-win_amd64.whl
Size 10.6 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
91476902426facd4bb0dad4dc3b2573bc82c95c71b135e0daaea072ed528d299
BLAKE2b-256 checksum
How to use checksums
d255ca3eb851aeef4f6f2e98a360c201f0d00bd1ba2eb98e2c7850d80aabc526
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.11.0

Release files / pygame-2.6.1-cp311-cp311-win32.whl

Download URL pygame-2.6.1-cp311-cp311-win32.whl
Size 10.3 MB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
811e7b925146d8149d79193652cbb83e0eca0aae66476b1cb310f0f4226b8b5c
BLAKE2b-256 checksum
How to use checksums
31df6788fd2e9a864d0496a77670e44a7c012184b7a5382866ab0e60c55c0f28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.11.0

Release files / pygame-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pygame-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 14.0 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
ce8cc108b92de9b149b344ad2e25eedbe773af0dc41dfb24d1f07f679b558c60
BLAKE2b-256 checksum
How to use checksums
7aa19ae2852ebd3a7cc7d9ae7ff7919ab983e4a5c1b7a14e840732f23b2b48f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pygame-2.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Size 14.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
173badf82fa198e6888017bea40f511cb28e69ecdd5a72b214e81e4dcd66c3b1
BLAKE2b-256 checksum
How to use checksums
d79ed06adaa5cc65876bcd7a24f59f67e07f7e4194e6298130024ed3fb22c456
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pygame-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 13.6 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c31dbdb5d0217f32764797d21c2752e258e5fb7e895326538d82b5f75a0cd856
BLAKE2b-256 checksum
How to use checksums
009e0d8aa8cf93db2d2ee38ebaf1c7b61d0df36ded27eb726221719c150c673d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL pygame-2.6.1-cp311-cp311-macosx_11_0_arm64.whl
Size 12.4 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f3935459109da4bb0b3901da9904f0a3e52028a3332a355d298b1673a334cf21
BLAKE2b-256 checksum
How to use checksums
83476edf2f890139616b3219be9cfcc8f0cb8f42eb15efd59597927e390538cb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL pygame-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 13.1 MB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
20349195326a5e82a16e351ed93465a7845a7e2a9af55b7bc1b2110ea3e344e1
BLAKE2b-256 checksum
How to use checksums
c4ca8f367cb9fe734c4f6f6400e045593beea2635cd736158f9fabf58ee14e3c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp310-cp310-win_amd64.whl

Download URL pygame-2.6.1-cp310-cp310-win_amd64.whl
Size 10.6 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
00827aba089355925902d533f9c41e79a799641f03746c50a374dc5c3362e43d
BLAKE2b-256 checksum
How to use checksums
38888de61324775cf2c844a51d8db14a8a6d2a9092312f27678f6eaa3a460376
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.10.0

Release files / pygame-2.6.1-cp310-cp310-win32.whl

Download URL pygame-2.6.1-cp310-cp310-win32.whl
Size 10.3 MB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
9dd5c054d4bd875a8caf978b82672f02bec332f52a833a76899220c460bb4b58
BLAKE2b-256 checksum
How to use checksums
d305d86440aa879708c41844bafc6b3eb42c6d8cf54082482499b53139133e2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.10.0

Release files / pygame-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pygame-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 14.0 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
da3ad64d685f84a34ebe5daacb39fff14f1251acb34c098d760d63fee768f50c
BLAKE2b-256 checksum
How to use checksums
11b3de6ed93ae483cf3bac8f950a955e83f7ffe59651fd804d100fff65d66d6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pygame-2.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Size 14.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
8a78fd030d98faab4a8e27878536fdff7518d3e062a72761c552f624ebba5a5f
BLAKE2b-256 checksum
How to use checksums
880f4e37b115056e43714e7550054dd3cd7f4d552da54d7fc58a2fb1407acda5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pygame-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 13.6 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
816e85000c5d8b02a42b9834f761a5925ef3377d2924e3a7c4c143d2990ce5b8
BLAKE2b-256 checksum
How to use checksums
bc33a1310386b8913ce1bdb90c33fa536970e299ad57eb35785f1d71ea1e2ad3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL pygame-2.6.1-cp310-cp310-macosx_11_0_arm64.whl
Size 12.4 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
10e3d2a55f001f6c0a6eb44aa79ea7607091c9352b946692acedb2ac1482f1c9
BLAKE2b-256 checksum
How to use checksums
dc48f8b1069788d1bd42e63a960d74d3355242480b750173a42b2749687578ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL pygame-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 13.1 MB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9beeb647e555afb5657111fa83acb74b99ad88761108eaea66472e8b8547b55b
BLAKE2b-256 checksum
How to use checksums
540b334c7c50a2979e15f2a027a41d1ca78ee730d5b1c7f7f4b26d7cb899839d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp39-cp39-win_amd64.whl

Download URL pygame-2.6.1-cp39-cp39-win_amd64.whl
Size 10.6 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
6582aa71a681e02e55d43150a9ab41394e6bf4d783d2962a10aea58f424be060
BLAKE2b-256 checksum
How to use checksums
77a96e8cfee4005d9ec165afd9146b930bcb5b921ec66395105316d00e7db6f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.9.0

Release files / pygame-2.6.1-cp39-cp39-win32.whl

Download URL pygame-2.6.1-cp39-cp39-win32.whl
Size 10.3 MB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
d29eb9a93f12aa3d997b6e3c447ac85b2a4b142ab2548441523a8fcf5e216042
BLAKE2b-256 checksum
How to use checksums
62573e97f6c05632ac3424578b4683ef9c36882b8796862517f72236111f76b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.9.0

Release files / pygame-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pygame-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 14.0 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
fb6e8d0547f30ddc845f4fd1e33070ef548233ad0dbf21f7ecea768883d1bbdc
BLAKE2b-256 checksum
How to use checksums
759c5cee30344ea2c5c2292c036719322d28decd2699c813b99cb0e636212f99
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pygame-2.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Size 14.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
163e66de169bd5670c86e27d0b74aad0d2d745e3b63cf4e7eb5b2bff1231ca8d
BLAKE2b-256 checksum
How to use checksums
b87e8f8357ea9b82bc2229a27f79ccff827a68033a6e5f2221da127422978a28
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pygame-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 13.6 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5d09fd950725d187aa5207c0cb8eb9ab0d2f8ce9ab8d189c30eeb470e71b617e
BLAKE2b-256 checksum
How to use checksums
d34d3621df95571465fa09fc65d48b9c70b32c4271b5c11b60aeabf592d3222e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL pygame-2.6.1-cp39-cp39-macosx_11_0_arm64.whl
Size 12.4 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
481cfe1bdbb7fe00acc5950c494c26f00240888619bdc396fc8c39a734797432
BLAKE2b-256 checksum
How to use checksums
53e1620110f7aebf9ae28073f9576b9ef1bf90dceabc0a88007d0241d842a501
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL pygame-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 13.0 MB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
15efaa11a80a65dd589a95bebe812fa5bfc7e14946b638a424c5bd9ac6cca1a4
BLAKE2b-256 checksum
How to use checksums
a7ed9f49258c5012a4642fe931e3d3fdb87a210a76c4680ce47ec049bb93afae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp38-cp38-win_amd64.whl

Download URL pygame-2.6.1-cp38-cp38-win_amd64.whl
Size 10.6 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
818b4eaec9c4acb6ac64805d4ca8edd4062bebca77bd815c18739fe2842c97e9
BLAKE2b-256 checksum
How to use checksums
66a8503d52d2a4fe1463207b80661d3fe7793346e515f369abe2c3a6552fec11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / pygame-2.6.1-cp38-cp38-win32.whl

Download URL pygame-2.6.1-cp38-cp38-win32.whl
Size 10.3 MB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
7bffdd3eaf394d9645331d1c3a5df9d782ebcc3c5a78f3b657c7879a828dd111
BLAKE2b-256 checksum
How to use checksums
af9ef4fd29d8a41ef19cbf573a1b0bafc4221aae78f610d307033e1250e1cca3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.1 CPython/3.8.0

Release files / pygame-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pygame-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 14.0 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
21160d9093533eb831f1b708e630706e5ac16b30750571ec27bc3b8364814f38
BLAKE2b-256 checksum
How to use checksums
e83b070a1bbac12a6914ea08a0b8f26bb349638233a56c111b5d4561f716f8f2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pygame-2.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Size 14.3 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
a1bf7ab5311bbced70320f1a56701650b4c18231343ae5af42111eea91e0949a
BLAKE2b-256 checksum
How to use checksums
e10a57dcdec74445f3fdf3d7dcc786ff38597592a458e8bbfc540aa8a6cb4ce2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pygame-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 13.6 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
ac3f033d2be4a9e23660a96afe2986df3a6916227538a6a0061bc218c5088507
BLAKE2b-256 checksum
How to use checksums
60157cbb41f46678555c7aab6b49eddac38b23e426b1a4244af520b826bbcb57
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp38-cp38-macosx_11_0_arm64.whl

Download URL pygame-2.6.1-cp38-cp38-macosx_11_0_arm64.whl
Size 12.4 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d1a7f2b66ac2e4c9583b6d4c6d6f346fb10a3392c04163f537061f86a448ed5c
BLAKE2b-256 checksum
How to use checksums
d250caae48e97e3e9ac8970caf0763c373f4f70b5bc7827ef5f967fdff777da1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl

Download URL pygame-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 13.0 MB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
97ac4e13847b6b293ecaffa5ffce9886c98d09c03309406931cc592f0cea6366
BLAKE2b-256 checksum
How to use checksums
7c038a99bbe20925ea0e1fe77ccb4bbe0168f6f9d0fcf64d8f45f02e9bcfeb7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp37-cp37m-win_amd64.whl

Download URL pygame-2.6.1-cp37-cp37m-win_amd64.whl
Size 10.8 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
94afd1177680d92f9214c54966ad3517d18210c4fbc5d84a0192d218e93647e0
BLAKE2b-256 checksum
How to use checksums
21e8557fe64ea5a4d69bff72146532c20e0b8f6f02eaf97df87c899a52e36247
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.5

Release files / pygame-2.6.1-cp37-cp37m-win32.whl

Download URL pygame-2.6.1-cp37-cp37m-win32.whl
Size 10.4 MB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
2a615d78b2364e86f541458ff41c2a46181b9a1e9eabd97b389282fdf04efbb3
BLAKE2b-256 checksum
How to use checksums
42298925749a5a90fbe918205c76c6e19958672c8db83b5844a854fa3344f520
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.7.5

Release files / pygame-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pygame-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 14.0 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
325a84d072d52e3c2921eff02f87c6a74b7e77d71db3bdf53801c6c975f1b6c4
BLAKE2b-256 checksum
How to use checksums
32eaa95a15beec98f3aae2225394fc1edd896b45867c10801dae9fbead60fdcf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pygame-2.6.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 14.3 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
c0b11356ac96261162d54a2c2b41a41978f00525631b01ec9c4fe26b01c66595
BLAKE2b-256 checksum
How to use checksums
76c448923d17ecc38ce6e00fe20e67519035cf837daef37a49d7ab6a484293af
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pygame-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 13.6 MB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
b46e68cd168f44d0224c670bb72186688fc692d7079715f79d04096757d703d0
BLAKE2b-256 checksum
How to use checksums
c03be8a44fed94f784f3c5bf8aa49e295f8a1f8f62b8169598db315bf5a596f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL pygame-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Size 13.1 MB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
a620883d589926f157b8f1d1f543183ac52e5c30507dea445e3927ae0bee1c54
BLAKE2b-256 checksum
How to use checksums
ea689154ed05ced562698c217ce34beeb0481fa8f92c0eede47889ffe86cb617
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release files / pygame-2.6.1-cp36-cp36m-win_amd64.whl

Download URL pygame-2.6.1-cp36-cp36m-win_amd64.whl
Size 10.8 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
a4b8f04fceddd9a3ac30778d11f0254f59efcd1c382d5801271113cea8b4f2f3
BLAKE2b-256 checksum
How to use checksums
dc3cd05d80211cc3c716dc3337a20fbb296f482dd56cc71938f344accce32747
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

Release files / pygame-2.6.1-cp36-cp36m-win32.whl

Download URL pygame-2.6.1-cp36-cp36m-win32.whl
Size 10.4 MB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
28b43190436037e428a5be28fc80cf6615304fd528009f2c688cc828f4ff104b
BLAKE2b-256 checksum
How to use checksums
647df4720293559165488eae9d76c9108fec0921167cae198ce8edfc823dc280
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/3.8.0 pkginfo/1.10.0 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.20 tqdm/4.64.1 importlib-metadata/4.8.3 keyring/23.4.1 rfc3986/1.5.0 colorama/0.4.5 CPython/3.6.8

Release files / pygame-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL pygame-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 13.9 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
14f9dda45469b254c0f15edaaeaa85d2cc072ff6a83584a265f5d684c7f7efd8
BLAKE2b-256 checksum
How to use checksums
7ed102e4127bb22beb3452fef881b545012f92a502f1beb46bae9dc82865945e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl

Download URL pygame-2.6.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Size 14.3 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32
SHA-256 checksum
How to use checksums
f84f15d146d6aa93254008a626c56ef96fed276006202881a47b29757f0cd65a
BLAKE2b-256 checksum
How to use checksums
59a5f838ee059080de2aa3d56f8c12e00873cb49cf7f28aec8ed4eb41f97eb9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL pygame-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 13.6 MB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
3bede70ec708057e305815d6546012669226d1d80566785feca9b044216062e7
BLAKE2b-256 checksum
How to use checksums
fde8d548e86303802298480a00b9c326e01213a2895bf73d3f6b6cc4fd62bead
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.8.10

Release files / pygame-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL pygame-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl
Size 13.1 MB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
56ffca6059b165bbf64f4b4be23b8068f6a0e220780e4f96ec0bb5ac3c63ec39
BLAKE2b-256 checksum
How to use checksums
e9454121e79e89ae5d122b133d12e9c6cc4a673f8a191deede27ff379ddfaf7a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.1.0 CPython/3.12.2

Release history Release notifications | RSS feed

This release

2.6.1 This release

60 release files

2.6.0

57 release files

2.5.2

57 release files

2.5.1

55 release files

2.5.0

55 release files

2.4.0

68 release files

2.3.0

68 release files

2.2.0

68 release files

2.1.3

71 release files

2.1.2

58 release files

2.1.1

58 release files

2.0.3

75 release files

2.0.2

47 release files

2.0.1

41 release files

2.0.0

41 release files

1.9.6

26 release files

1.9.5

24 release files

1.9.4

24 release files

1.9.3

19 release files

1.9.2

15 release files

1.9.2b3

1.9.2b2

1.8.1

1.8.0

1.7.1

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page