Skip to main content

Python Game Development

Project description

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

pip install pygame

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.

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

Thank you for thinking of contributing!

To contribute to the main project documentation, see docs/README.md or view more detailed instructions here.

New to contributing to Open Source Free Libre software?
There is a draft of “Let’s write a unit test!” which is a step by step guide on how to write your first unit test in python for pygame, which is very similar to how you would do it for other projects.

Want or need to compile pygame from source?
See the compilation page for more detailed instructions.

For a detailed developer guide on “How to Hack Pygame”:
Head to the Hacking Page.

Beginner developers looking for ways to contribute to the project can look at issues labeled “good first issue” or “Difficulty: Easy”.

To submit patches and report bugs:
Visit the Bugs & Patches page for detailed instructions.

See the info page for more info and ways to get in touch with the Pygame team.

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 history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pygame-2.5.0.tar.gz (15.6 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pygame-2.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pygame-2.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (14.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pygame-2.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (12.7 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pygame-2.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pygame-2.5.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (14.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pygame-2.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (12.7 MB view details)

Uploaded PyPymacOS 10.9+ x86-64

pygame-2.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pygame-2.5.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (14.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

pygame-2.5.0-pp36-pypy36_pp73-win32.whl (10.3 MB view details)

Uploaded PyPyWindows x86

pygame-2.5.0-cp312-cp312-win_amd64.whl (10.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pygame-2.5.0-cp312-cp312-win32.whl (10.2 MB view details)

Uploaded CPython 3.12Windows x86

pygame-2.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pygame-2.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (14.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

pygame-2.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pygame-2.5.0-cp311-cp311-win_amd64.whl (10.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pygame-2.5.0-cp311-cp311-win32.whl (10.2 MB view details)

Uploaded CPython 3.11Windows x86

pygame-2.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pygame-2.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (14.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

pygame-2.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pygame-2.5.0-cp311-cp311-macosx_11_0_arm64.whl (12.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pygame-2.5.0-cp311-cp311-macosx_10_9_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

pygame-2.5.0-cp310-cp310-win_amd64.whl (10.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pygame-2.5.0-cp310-cp310-win32.whl (10.2 MB view details)

Uploaded CPython 3.10Windows x86

pygame-2.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pygame-2.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (14.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

pygame-2.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pygame-2.5.0-cp310-cp310-macosx_11_0_arm64.whl (12.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pygame-2.5.0-cp310-cp310-macosx_10_9_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

pygame-2.5.0-cp39-cp39-win_amd64.whl (10.5 MB view details)

Uploaded CPython 3.9Windows x86-64

pygame-2.5.0-cp39-cp39-win32.whl (10.2 MB view details)

Uploaded CPython 3.9Windows x86

pygame-2.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pygame-2.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (14.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

pygame-2.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pygame-2.5.0-cp39-cp39-macosx_11_0_arm64.whl (12.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pygame-2.5.0-cp39-cp39-macosx_10_9_x86_64.whl (12.9 MB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

pygame-2.5.0-cp38-cp38-win_amd64.whl (10.5 MB view details)

Uploaded CPython 3.8Windows x86-64

pygame-2.5.0-cp38-cp38-win32.whl (10.2 MB view details)

Uploaded CPython 3.8Windows x86

pygame-2.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pygame-2.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (14.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

pygame-2.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pygame-2.5.0-cp38-cp38-macosx_11_0_arm64.whl (12.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pygame-2.5.0-cp38-cp38-macosx_10_9_x86_64.whl (12.8 MB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

pygame-2.5.0-cp37-cp37m-win_amd64.whl (10.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

pygame-2.5.0-cp37-cp37m-win32.whl (10.3 MB view details)

Uploaded CPython 3.7mWindows x86

pygame-2.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pygame-2.5.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (14.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

pygame-2.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pygame-2.5.0-cp37-cp37m-macosx_10_9_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

pygame-2.5.0-cp36-cp36m-win_amd64.whl (10.7 MB view details)

Uploaded CPython 3.6mWindows x86-64

pygame-2.5.0-cp36-cp36m-win32.whl (10.3 MB view details)

Uploaded CPython 3.6mWindows x86

pygame-2.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.9 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

pygame-2.5.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (14.2 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686

pygame-2.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

pygame-2.5.0-cp36-cp36m-macosx_10_9_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file pygame-2.5.0.tar.gz.

File metadata

  • Download URL: pygame-2.5.0.tar.gz
  • Upload date:
  • Size: 15.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.6

File hashes

Hashes for pygame-2.5.0.tar.gz
Algorithm Hash digest
SHA256 edd5745b79435976d92c0a7318aedcafcb7ac4567125ac6ba88aa473559ef9ab
MD5 2246db704e9befcf83e88f0277ebf089
BLAKE2b-256 592acf94cd20b993baa764e3e7eae9e7084ca2d04c5e3f74eacf8f1ea62d9be9

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13b650e925d2e8c82c16bdeae6e7fc5d6ca4ac659a1412da4ecd923ef9d688cb
MD5 8b2fd3e52449e60685a9c5e59752af21
BLAKE2b-256 1789a0f6293f192fefd3849fe79da2a88363b0f72283d135a82e36092e2cdc26

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 583d9c8ad033ad51da8485427139d047afb649f49e42d4fa88477f73734ad4b0
MD5 5e13e7bb71fa5d2260567c86716c4589
BLAKE2b-256 18ba21e88b48f18553632a3ff6cde07f6d98ba5487cce15641570519ce629f6c

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3959038a3e2034cee3f15471786a3bac35baeaa1f7503dc7402bb49d25b5ddbc
MD5 0ee47c8ef9f2177fb3bf057dd82b65d0
BLAKE2b-256 0e9510dfed9bfe25246fc7138d8c523edf2af994648f76ba2775a519253f2e89

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef373b9865c740f18236f2324e17e7f2111e27c6a4a5b67c490c72a8a8b8de77
MD5 48763477c9c38b8318a259fbd591abd1
BLAKE2b-256 290ddf784fe0f25eba911b269d67089996e8ef675e551fee5cc6e14ae18f2e15

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c2cbd9d1a0a3969d6e1c6b0741279c843b4a36ef3804d324874d0a2f0e49816
MD5 7227760abf7f78e27ce42175ede9c2cf
BLAKE2b-256 82ab8e1ecda5db6a63a3b7cbfd1b847edd7152405610c5f8907df43a0f80bbf6

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7dd80addfdf7dc1f0e04f81c98acb96580726783172256f2ebc955a967e84124
MD5 abad3145e210372b06314a60cc0228a8
BLAKE2b-256 0321aec206d6e679c1efbc9b3ee201b25b17f0bdf52a61913f6210c941fed70a

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6830e431575697f7a11f7731798445242e37eb07ae9007f7be33083f700e9b1e
MD5 7c23a8cfee6f94535c95f88f81e63d9c
BLAKE2b-256 e94a5db10ace98961f7605724e241a106a6d7ce2de0190f81b346497d2a139fa

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-pp37-pypy37_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2b11708f1c7b1671db15246275adcb18cf384f5f7e73532e26999968876c5099
MD5 af1d1bcdeb0b4735ba337f1d99f99bbe
BLAKE2b-256 53fc0a02e6169203a6eca5afa60157d23d489703f0ffaaacd6562b14cab50fd8

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-pp36-pypy36_pp73-win32.whl.

File metadata

  • Download URL: pygame-2.5.0-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: PyPy, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 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

File hashes

Hashes for pygame-2.5.0-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 1bd14adf6151b6ac2f617a8fd71621f1c125209c41a359d3c1cf4bf3904dba5f
MD5 934b72126f8a7d27a8f2e2293d35a546
BLAKE2b-256 d3df0acc382af4a9d95d7f50758738c88dfd4fa0626faf45e93413dc7eaa11c7

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pygame-2.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0b2

File hashes

Hashes for pygame-2.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 574e310ba708da0c34b71c4158aa7cdca3cf3e16c4100dcd1d3c931a9c6705b4
MD5 e2d68aee1ba46ca8ee8150a46e5e609a
BLAKE2b-256 c526803a33a4d0b3648c865dc51b8ddd67602e451057248dd8203d58142e4cbf

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: pygame-2.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.0b2

File hashes

Hashes for pygame-2.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8ffebcafda0add8072f82999498113be37494694fa36e02155cfaf1a0ba56fe2
MD5 4fa6c9f0e4a79888c1e4f0fff0064bce
BLAKE2b-256 ae263d06638712daa486de332534858daf31ce973914942b19b2456f93b3c92e

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c80a1ad38d11102b4dfa0519aa2a26fea534503b259872609acc9adb1860884e
MD5 1af5bae8afd8aec4827459bd711e3530
BLAKE2b-256 491f5864fdb62580969748bec9d9d08a1948bac084688028d658602a39774da8

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bae93ce29b8337a5e02507603094c51740c9f496272ef070e2624e9647776568
MD5 d04a4850eccfab701e7f785c676959a9
BLAKE2b-256 b81032dd536021c75461164b3d1dfa600782065e541f0ead709187af624d223b

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ddec0c823fd0869fe4a75ba906dcb7889db0e0c289ce8c03d4ce0a67351ab66
MD5 d1d2b4e840d1d8b6a25d09186f16d04d
BLAKE2b-256 4b93fe8187d7b1610abb6a4146db016b6a2205b0d9b4a6247be6c6d12696cfb6

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pygame-2.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pygame-2.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f7b77b5019a9a6342535f53c75cef912b218cd24e98505828418f135aacc0a1b
MD5 bbc6a69c516f5cd70b600a5839da82ed
BLAKE2b-256 a3c62c8437c0e106d8db0427a4c8233e0f65a93052c91113b3e6bdfc83bd2445

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: pygame-2.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.0

File hashes

Hashes for pygame-2.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 46cf1c9b20fb11c7d836c02dd5fc2ca843b699c0e2bc4130cf4ad2f855db5f7f
MD5 d53b0c117598fe9da1b0401b675d4732
BLAKE2b-256 bec5d10ba06fd112c6c24429c1f68d73e9faf5a5c2fe445586cedf6bb65a6b07

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c66b7abc38511c7ca08c5bb58a3bfc14fa51b4e5f85a1786777afc9e584a14dd
MD5 6d5c02cfd19f4679ff3ea16324d298bb
BLAKE2b-256 778f87fd51fd5cd249bb795d38e6b5c01c4a4c73a6acdd4e64081e7325b5d08c

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3bcb19c8ee3fc794ab3a7cb5b5fb1ad38da6866dfbba4af3699a84a828c8a4b9
MD5 8129f4be1c6b3cce3dd14b5508443993
BLAKE2b-256 9d23c1721fa20ebeefa778167cc60777bd14c73b48e986259d7a70a6fb9ff024

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5b6a42109f922352c524565fceb22bf8f8b6e4b00d38306e6f5b4c673048f4a
MD5 ff5593efe8231f6c932c062edc4585dc
BLAKE2b-256 073dec787d3a1e4a06731c11636c2f549c3f39ec7c73f64ccfb37ba0587ad0eb

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b763062b1996de26a28600e7a8f138d5b36ba0ddd63c65ccbd06124cd95bab70
MD5 af8cc9b74f3a8fd76efd39218777cf80
BLAKE2b-256 293f2d4d89b17380fe22092c74abc74fd6e6c1b20ba8f5eb7c5e30cd58339adc

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c71d5b3ec232113cbd2e23a19eb01eef1818db41892d0d5efbac3901f940da66
MD5 a1ef3de0304cd4d7e21f7e5bae725888
BLAKE2b-256 c44a88b1124b76a09ab20eb37821b9a69ba304234712e9efe5e015f7aa5c7d1f

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pygame-2.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.0

File hashes

Hashes for pygame-2.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 93128beb1154c443f05a66bfbf3f1d4eb8659157ab3b45e4a0454e5905440431
MD5 f8e60e5c7b5ccc0c54a16e9fa8fcd9a8
BLAKE2b-256 e8e28bb32810016a24780bd2b26f3c7c2e4fba7d06e33aeb1ed9ac847fb10424

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: pygame-2.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.0

File hashes

Hashes for pygame-2.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e9eed550b8921080a3c7524202822fc2cf7226e0ffd3c4e4d16510ba44b24e6f
MD5 0e4b65c08c4244e9323dc5c541ec4262
BLAKE2b-256 2c9a92e99e076f1525bd4550791b8058f3bb10b87ac066b3c0c54a072f2f6825

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22d5eac9b9936c7dc2813a750bc8efd53234ad1afc32eb99d6f64bb403c2b9aa
MD5 85e8640482196eb0a148f7f52164815e
BLAKE2b-256 e816675f2a3009270cd33b9cd836c2154c311bb417f455397eb5d882fe57d58d

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7e1898db0fd7b868a31c29204813f447c59390350fd806904d80bebde094f3f8
MD5 9fa071b260fdd73f586b2c707733aa0d
BLAKE2b-256 23223bbf42aa4a39eb7d639346deb4b78e485a1c738887875dcd73281402e43f

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 854dc9106210d1a3a83914af53fc234c0bed65a39f5e6098a8eb489da354ad0c
MD5 78cc7292e0f874e2454f71a751bdd626
BLAKE2b-256 0c3bbe67b1b365da21a0a65b0a12ba5046f7bf401d7b1b69e5c21b949c4a9cd0

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 875dbde88b899fb7f48d6f0e87f70c3dcc8ee87a947c3df817d949a9741dbcf5
MD5 1c2dccadb3e71b367ea22d9b2e84d2ac
BLAKE2b-256 e23a3231acad3bd9a9dc91f1577b8e5c5d5b8997ea4e7d3855482a79f11514a2

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e34a2b5660acc298d0a66ce16f13a7ca1c56c2a685e40afef3a0cf6eaf3f44b3
MD5 54f8e35eb181dd1167bfbe9a35d0142e
BLAKE2b-256 a18d66d913f7133c45035e304d8487504d4180d1b2e487a0d15812d451fb7d77

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: pygame-2.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.0

File hashes

Hashes for pygame-2.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8062adc409f0b2742d7996b9b470494025c5e3b73d0d03e3798708dcf5d195cd
MD5 9031d3b4ebeee93014d7cfcb70c13eb1
BLAKE2b-256 1c2c71c89b172695a4074d809db1410671a0ace433a7a00092970ccd6640827c

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pygame-2.5.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.0

File hashes

Hashes for pygame-2.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9d2126f91699223f0c36845d1c7b2cdfe2f1753ef85b8410ea613e8bd212ca33
MD5 76146b62d5ee22cfddfad0fc6c61c5d5
BLAKE2b-256 d9d742e6e3a3fed81379117af50cfaf033a140e1dee0fd45842d974e253d5270

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7babaeac11544f3e4d7a15756a27f943dc5fff276481fdc9d90415a903ad31a9
MD5 75d8a6a6a701877153ad73c3976752cd
BLAKE2b-256 a13c3419a7dee1aaeaad4a037809c29657caa99c7ddda5d375dc29c2690d2d9a

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 603d403997d46b07022097861c8b0ff76c6192f8a2f5f89f1a6a978d4411b715
MD5 889c0d85b8ba7d2ebef4672309bb2279
BLAKE2b-256 0f37023974a3ae4d849c7b3f1ab012e12101c7744c217b583c64e9c5702edaf7

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ca85da605f6621c99c05f272a5dcf85bf0badcdca45f16ff2bee9a9d41ae042
MD5 1d9e005fd6061322b3fad34ed895f1dd
BLAKE2b-256 8a0ce4e706e7140cf701a2b9d039e776adb6071f063802963c14f086beb80a9d

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daa81057c1beb71a9fb96253457197ad03ee988ba546a166f253bd92a98a9a11
MD5 0043f13740b45124fefd51a4b1e886e9
BLAKE2b-256 6ed606c2ad80238335a2ab10df3fdbf2ba2febbb3189043e38ae73dafc93f088

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99965da24d0bf138d9ac6b7494b9a12781c1510cf936616d1d0c46a736777f6a
MD5 148983b5b48b981697e249b6c9086698
BLAKE2b-256 455205635cc2a8160f379b19666a26fc644b993239ee7939318dcd2bdf7ff977

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: pygame-2.5.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.5 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.0

File hashes

Hashes for pygame-2.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 df1d8affdbe9f417cc7141581e3d08e4b09f708060d3127d2016fd591b2e4f68
MD5 e91ec22c4857383538c00c77a9b10f0d
BLAKE2b-256 6e3c951ebc6b2889f0c9f2a843bdd7e909d987297defdb6b697f1c4429d45b13

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: pygame-2.5.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.8.0

File hashes

Hashes for pygame-2.5.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 50a89c15412506d95e98792435f49a73101788db30ad9c562f611c7aa7b437fa
MD5 0663f6c43ad2d0606a8912b6e3b5c621
BLAKE2b-256 44114bd80b36689efc0109527bd58cdd6dccc8224dc1f04c866b5eb0ce803f08

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bce4116db6924b544ff8ff03f7ef681c8baf9c6e039a1ec21e26b4ebdaa0e994
MD5 7dd9ec9320c6a7ca021bc89d83fbabef
BLAKE2b-256 d0dd62f080a1564176cce6acf19b5183e296176df52e176de4efc6462275e3a8

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b23effd50121468f1dc41022230485bff515154191a9d343224850aa3ed3b7f0
MD5 f293b8871f6431d39e7a14fafe398f40
BLAKE2b-256 d44ac6b9d5bcce6ed778c62158197d736960ef88ad9a40c8e51960e6de755689

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5d3b0da31ea341b86ef96d6b13c0ddcb25f5320186b7215bc870f08119d2f80
MD5 0d7f71bdfa8ed17a0e9872cef2a87c86
BLAKE2b-256 92adbc9fc5b9aa9e0d7eb3dc12fe2bec69a65c6f6454316028154690ed4de342

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 969de806bed49b28972862acba652f05ece9420bbdf5f925c970c6a18a9fd1f9
MD5 207b877d8934d4f3f8c7f4a32d37b3d6
BLAKE2b-256 16905cdde55203f120b42e29931d39ff0157624bb8c95c73ad92653a7a220df5

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 143550078ab10f290cd7c8715a46853e0dc598fd6cdd1561ecb4d6e3116a6b26
MD5 369741bfbd5fcb8d1eb4115742124c91
BLAKE2b-256 ba0a914647794ac042333cf376a3566b461fad4e7621682f0961414da344fba6

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: pygame-2.5.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 10.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.5

File hashes

Hashes for pygame-2.5.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4c87fa8fa1f3ea94069119accd6d4b5fbf869c2b2954a19b45162dfb3b7c885e
MD5 90e6269188fc30efef61f87f4cc09cd5
BLAKE2b-256 d7e7989f72f7e7d522e37f9a1f573716dacdafc193d2e0b5e2af69b6c7afc4a5

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: pygame-2.5.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.7.5

File hashes

Hashes for pygame-2.5.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e47696154d689180e4eea8c1d6f2bac923986119219db6ad0d2e60ab1f525e8c
MD5 e5af7e1a184fe089b121a5488e067f12
BLAKE2b-256 692a235469c896e9a3964f754a09c0771975072a06e0e1043bc450d40d90faee

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 147cc0256a5df1316590f351febf6205ef2907564fb0d902935834b91e183486
MD5 8575884117f0fdf4fbb1041c15ade2a2
BLAKE2b-256 830268d3d70588aac5c77ebf08b80134f2f964556f26b5814a722a027ea7f3a1

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e21d53279fb504b267ae06b565b72d9f95ecbf1f2dd8c705329b287f38295d98
MD5 1da740ba98a33381f318bbc13a848f7e
BLAKE2b-256 b6e2c77efb1f2a35f0ba691650034b6702a32c0c675f94617ca67c3e09b34fc0

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef96e9a2d8fd9526b89657d192c42dd7c551bfa381fa98ec52d45443e9713818
MD5 667c4a7559544911c3bf038b8f09c974
BLAKE2b-256 e30c6deef03f42328baad14017c30ec6e86177e4aead4e9ca61e749a665b8848

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 80f167d8fcec7cd3107f829784ad721b1b7532c19fdf42b3aabbb51f7347850f
MD5 e2937b01485edafbd0925286a4800ffa
BLAKE2b-256 dc144f8b4062003831bbde686fb1fd3f1ba8056525975cdfc01bfb4ab15c9efb

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: pygame-2.5.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 10.7 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 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

File hashes

Hashes for pygame-2.5.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 6b58356510b7c38836eb81cf08983b58f280da99580d4f17e89ed0ddb707c29c
MD5 4e7f849d02044ce09f027261efeb2149
BLAKE2b-256 03ed59474bbac78f3da4a1d8a37c25369782a0c9a3bd7184f3d81b29fb6f2a3e

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: pygame-2.5.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 10.3 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.9.6 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/1.0.0 urllib3/1.26.16 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

File hashes

Hashes for pygame-2.5.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 d051420667dd9fc8103b3cf994c03e46ee90b1c4a72c174737b8c14729ddf68e
MD5 bb02c1fc9ee100b2df7761518bb9f5aa
BLAKE2b-256 9b0f678d92755c049c68aa70d4c518a742bb4e4430ed4a3df6bb3206409a797b

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1cb39b660da1b56a1704ec4aa72bac538030786e23607fb25b8a66f357ffe3a
MD5 b724b2606fcaaf6c49815e4cf62290a6
BLAKE2b-256 e8d8adc55735ca61ebc59f175f203a1eb0a65fbd829e8bcdb2dfef7575c3238f

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4a0787ade8723323a3ba874bb725010bb08990a77327fc85f42474f3a840447
MD5 3f7b20ff8f866bde89643da1b3f61e7a
BLAKE2b-256 661a3cd537336050192abae8efc84fb663fae3dbb5841f6ae4bb9a570576b0f6

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c116a96a2784bd1724476dbf9c48bfea466ee493a736bdfa04ecbc3f193de0bc
MD5 5c7cca36dc064f96b13edcc8041e9f03
BLAKE2b-256 096d7c272abd4541f8a734972157e9bf0d2123b0938b9ccbe8d650bf7e35da96

See more details on using hashes here.

File details

Details for the file pygame-2.5.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.5.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 275e4fab379620c3b262cd58c457eea80001e91bc2e04d306ddb0ba548c969bf
MD5 f01bc8284f1531b4803794b693bee292
BLAKE2b-256 bb0d259a785901d44666ad67d1b43fd3195cdd25abfbaebec027a52c05b8404d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page