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

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 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.6.1.tar.gz (14.8 MB view details)

Uploaded Source

Built Distributions

pygame-2.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (13.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pygame-2.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (14.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686

pygame-2.6.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (12.8 MB view details)

Uploaded PyPy macOS 10.15+ x86-64

pygame-2.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (12.8 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

pygame-2.6.1-pp36-pypy36_pp73-win32.whl (10.4 MB view details)

Uploaded PyPy Windows x86

pygame-2.6.1-cp313-cp313-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.13 Windows x86-64

pygame-2.6.1-cp313-cp313-win32.whl (10.2 MB view details)

Uploaded CPython 3.13 Windows x86

pygame-2.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

pygame-2.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (14.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

pygame-2.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

pygame-2.6.1-cp313-cp313-macosx_11_0_arm64.whl (12.4 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

pygame-2.6.1-cp313-cp313-macosx_10_13_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

pygame-2.6.1-cp312-cp312-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.12 Windows x86-64

pygame-2.6.1-cp312-cp312-win32.whl (10.3 MB view details)

Uploaded CPython 3.12 Windows x86

pygame-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pygame-2.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (14.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

pygame-2.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pygame-2.6.1-cp312-cp312-macosx_11_0_arm64.whl (12.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pygame-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

pygame-2.6.1-cp311-cp311-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.11 Windows x86-64

pygame-2.6.1-cp311-cp311-win32.whl (10.3 MB view details)

Uploaded CPython 3.11 Windows x86

pygame-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pygame-2.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (14.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

pygame-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pygame-2.6.1-cp311-cp311-macosx_11_0_arm64.whl (12.4 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pygame-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

pygame-2.6.1-cp310-cp310-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

pygame-2.6.1-cp310-cp310-win32.whl (10.3 MB view details)

Uploaded CPython 3.10 Windows x86

pygame-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pygame-2.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (14.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

pygame-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pygame-2.6.1-cp310-cp310-macosx_11_0_arm64.whl (12.4 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pygame-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

pygame-2.6.1-cp39-cp39-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

pygame-2.6.1-cp39-cp39-win32.whl (10.3 MB view details)

Uploaded CPython 3.9 Windows x86

pygame-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pygame-2.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (14.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

pygame-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pygame-2.6.1-cp39-cp39-macosx_11_0_arm64.whl (12.4 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pygame-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

pygame-2.6.1-cp38-cp38-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

pygame-2.6.1-cp38-cp38-win32.whl (10.3 MB view details)

Uploaded CPython 3.8 Windows x86

pygame-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pygame-2.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (14.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

pygame-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pygame-2.6.1-cp38-cp38-macosx_11_0_arm64.whl (12.4 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pygame-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl (13.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

pygame-2.6.1-cp37-cp37m-win_amd64.whl (10.8 MB view details)

Uploaded CPython 3.7m Windows x86-64

pygame-2.6.1-cp37-cp37m-win32.whl (10.4 MB view details)

Uploaded CPython 3.7m Windows x86

pygame-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (14.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pygame-2.6.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (14.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

pygame-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pygame-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

pygame-2.6.1-cp36-cp36m-win_amd64.whl (10.8 MB view details)

Uploaded CPython 3.6m Windows x86-64

pygame-2.6.1-cp36-cp36m-win32.whl (10.4 MB view details)

Uploaded CPython 3.6m Windows x86

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

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

pygame-2.6.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl (14.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686

pygame-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (13.6 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

pygame-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl (13.1 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: pygame-2.6.1.tar.gz
  • Upload date:
  • Size: 14.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.12.2

File hashes

Hashes for pygame-2.6.1.tar.gz
Algorithm Hash digest
SHA256 56fb02ead529cee00d415c3e007f75e0780c655909aaa8e8bf616ee09c9feb1f
MD5 cb6bf42a449b0bb1f53c534bcbcc220c
BLAKE2b-256 49cc08bba60f00541f62aaa252ce0cfbd60aebd04616c0b9574f755b583e45ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7103c60939bbc1e05cfc7ba3f1d2ad3bbf103b7828b82a7166a9ab6f51950146
MD5 28b7f4dd32d64a78f87df7131d6c4859
BLAKE2b-256 8b115519d3dfc8046822289dbd8ffde407e30ddb56b6f4a78ca39121a545a322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17498a2b043bc0e795faedef1b081199c688890200aef34991c1941caa2d2c89
MD5 5ee31d7777317d91c39cf3f313bf9e51
BLAKE2b-256 b8a5ef76a85da2cb7bc6b9fc54b0a56cf75f244c8adcd16bab8d0d9d7398bfed

See more details on using hashes here.

File details

Details for the file pygame-2.6.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.6.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bbb7167c92103a2091366e9af26d4914ba3776666e8677d3c93551353fffa626
MD5 1b38e226c551fbda9023729a80a99118
BLAKE2b-256 9a2f8458240c8908a550254c80b64f8c03d6d46156664df3515a1331ae730b4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b7f9f8e6f76de36f4725175d686601214af362a4f30614b4dae2240198e72e6f
MD5 2ebc97045db9c458c9402b955cb64a9c
BLAKE2b-256 0656ea9c785258da9f6da939abe8f961c8ce09a8177524a78f94932fbcb2c5d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygame-2.6.1-pp36-pypy36_pp73-win32.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: PyPy, Windows x86
  • Uploaded using 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

File hashes

Hashes for pygame-2.6.1-pp36-pypy36_pp73-win32.whl
Algorithm Hash digest
SHA256 4a8ea113b1bf627322a025a1a5a87e3818a7f55ab3a4077ff1ae5c8c60576614
MD5 0bcfe367bef42ce58da2b6e621a520fa
BLAKE2b-256 c1130e6c0d38ac173edc7e274663f4ea9358a0aa5b330a82402a603a3edac824

See more details on using hashes here.

File details

Details for the file pygame-2.6.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pygame-2.6.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 10.6 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0rc1

File hashes

Hashes for pygame-2.6.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 813af4fba5d0b2cb8e58f5d95f7910295c34067dcc290d34f1be59c48bd1ea6a
MD5 ff54b87089ad7ee910501696b856427e
BLAKE2b-256 7e1117f7f319ca91824b86557e9303e3b7a71991ef17fd45286bf47d7f0a38e6

See more details on using hashes here.

File details

Details for the file pygame-2.6.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: pygame-2.6.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 10.2 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0rc1

File hashes

Hashes for pygame-2.6.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3acd8c009317190c2bfd81db681ecef47d5eb108c2151d09596d9c7ea9df5c0e
MD5 49500b3c9c17c1cf3ee10bd5f8305fd8
BLAKE2b-256 a60629e939b34d3f1354738c7d201c51c250ad7abefefaf6f8332d962ff67c4b

See more details on using hashes here.

File details

Details for the file pygame-2.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef07c0103d79492c21fced9ad68c11c32efa6801ca1920ebfd0f15fb46c78b1c
MD5 26e42713fcbe021f3d79c59e91c9c88b
BLAKE2b-256 85b5aa23aa2e70bcba42c989c02e7228273c30f3b44b9b264abb93eaeff43ad7

See more details on using hashes here.

File details

Details for the file pygame-2.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for pygame-2.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4c1623180e70a03c4a734deb9bac50fc9c82942ae84a3a220779062128e75f3b
MD5 f1f4de1055fa6582f3f99b3d1da960e7
BLAKE2b-256 3b872851a564e40a2dad353f1c6e143465d445dab18a95281f9ea458b94f3608

See more details on using hashes here.

File details

Details for the file pygame-2.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pygame-2.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27eb17e3dc9640e4b4683074f1890e2e879827447770470c2aba9f125f74510b
MD5 4ea4d8da128f1cba91bd19cb96231d04
BLAKE2b-256 9f8f617a1196e31ae3b46be6949fbaa95b8c93ce15e0544266198c2266cc1b4d

See more details on using hashes here.

File details

Details for the file pygame-2.6.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygame-2.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a3a1288e2e9b1e5834e425bedd5ba01a3cd4902b5c2bff8ed4a740ccfe98171
MD5 2c7cea0997f72d3d9e420b06404571b3
BLAKE2b-256 0ec69cb315de851a7682d9c7568a41ea042ee98d668cb8deadc1dafcab6116f0

See more details on using hashes here.

File details

Details for the file pygame-2.6.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.6.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ae6039f3a55d800db80e8010f387557b528d34d534435e0871326804df2a62f2
MD5 2be907e9e4853918d3c1a5f3cf09b7f4
BLAKE2b-256 e191718acf3e2a9d08a6ddcc96bd02a6f63c99ee7ba14afeaff2a51c987df0b9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pygame-2.6.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3a9e7396be0d9633831c3f8d5d82dd63ba373ad65599628294b7a4f8a5a01a65
MD5 8d383c83f0fc22bd9c511a3220dfd887
BLAKE2b-256 5f907d766d54bb95939725e9a9361f9c06b0cfbe3fe100aa35400f0a461a278a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pygame-2.6.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 84fc4054e25262140d09d39e094f6880d730199710829902f0d8ceae0213379e
MD5 b51e6342f8a82ba32c45d49d15a6bf6e
BLAKE2b-256 f3428ea2a6979e6fa971702fece1747e862e2256d4a8558fe0da6364dd946c53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1206125f14cae22c44565c9d333607f1d9f59487b1f1432945dfc809aeaa3e88
MD5 6735dcfa9fa98418dea27e52b80bda9c
BLAKE2b-256 b9f2d31e6ad42d657af07be2ffd779190353f759a07b51232b9e1d724f2cda46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33006f784e1c7d7e466fcb61d5489da59cc5f7eb098712f792a225df1d4e229d
MD5 3d2362328a490d8b1caec7ff1666b33d
BLAKE2b-256 fdcab015586a450db59313535662991b34d24c1f0c0dc149cc5f496573900f4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c47a6938de93fa610accd4969e638c2aebcb29b2fca518a84c3a39d91ab47116
MD5 79f0211cb80134da0e3397b4d39fe66c
BLAKE2b-256 06be3ed337583f010696c3b3435e89a74fb29d0c74d0931e8f33c0a4246307a9

See more details on using hashes here.

File details

Details for the file pygame-2.6.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pygame-2.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8040ea2ab18c6b255af706ec01355c8a6b08dc48d77fd4ee783f8fc46a843bf
MD5 b1f98c4686eda9de8e8b049a7b247e03
BLAKE2b-256 cd5377ccbc384b251c6e34bfd2e734c638233922449a7844e3c7a11ef91cee39

See more details on using hashes here.

File details

Details for the file pygame-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for pygame-2.6.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4ee7f2771f588c966fa2fa8b829be26698c9b4836f82ede5e4edc1a68594942e
MD5 d27abe4e7b415074105386a3b0bc3ae3
BLAKE2b-256 92162c602c332f45ff9526d61f6bd764db5096ff9035433e2172e2d2cadae8db

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pygame-2.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 91476902426facd4bb0dad4dc3b2573bc82c95c71b135e0daaea072ed528d299
MD5 e5f0825e307a5b231aa5bdc2b49dca4c
BLAKE2b-256 d255ca3eb851aeef4f6f2e98a360c201f0d00bd1ba2eb98e2c7850d80aabc526

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pygame-2.6.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 811e7b925146d8149d79193652cbb83e0eca0aae66476b1cb310f0f4226b8b5c
MD5 e4977cb32ad05420675a52f246272102
BLAKE2b-256 31df6788fd2e9a864d0496a77670e44a7c012184b7a5382866ab0e60c55c0f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce8cc108b92de9b149b344ad2e25eedbe773af0dc41dfb24d1f07f679b558c60
MD5 691014c3daa58d4d819b966d1ae47b13
BLAKE2b-256 7aa19ae2852ebd3a7cc7d9ae7ff7919ab983e4a5c1b7a14e840732f23b2b48f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 173badf82fa198e6888017bea40f511cb28e69ecdd5a72b214e81e4dcd66c3b1
MD5 352e4a01084072c09886f636a952e802
BLAKE2b-256 d79ed06adaa5cc65876bcd7a24f59f67e07f7e4194e6298130024ed3fb22c456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c31dbdb5d0217f32764797d21c2752e258e5fb7e895326538d82b5f75a0cd856
MD5 90b75f5425610f2064ba4afe129adf44
BLAKE2b-256 009e0d8aa8cf93db2d2ee38ebaf1c7b61d0df36ded27eb726221719c150c673d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3935459109da4bb0b3901da9904f0a3e52028a3332a355d298b1673a334cf21
MD5 ae03afe67336058d8fbdf7a9ca402f3b
BLAKE2b-256 83476edf2f890139616b3219be9cfcc8f0cb8f42eb15efd59597927e390538cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20349195326a5e82a16e351ed93465a7845a7e2a9af55b7bc1b2110ea3e344e1
MD5 c7eeefa5432269f0ad5189542c610cee
BLAKE2b-256 c4ca8f367cb9fe734c4f6f6400e045593beea2635cd736158f9fabf58ee14e3c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pygame-2.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 00827aba089355925902d533f9c41e79a799641f03746c50a374dc5c3362e43d
MD5 c30cefb6337edead2e54f701d56fe301
BLAKE2b-256 38888de61324775cf2c844a51d8db14a8a6d2a9092312f27678f6eaa3a460376

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pygame-2.6.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9dd5c054d4bd875a8caf978b82672f02bec332f52a833a76899220c460bb4b58
MD5 1668df3d22bc82b4a60753233568fa41
BLAKE2b-256 d305d86440aa879708c41844bafc6b3eb42c6d8cf54082482499b53139133e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da3ad64d685f84a34ebe5daacb39fff14f1251acb34c098d760d63fee768f50c
MD5 5460dbe72259cbef1bf3f4e64af4786c
BLAKE2b-256 11b3de6ed93ae483cf3bac8f950a955e83f7ffe59651fd804d100fff65d66d6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a78fd030d98faab4a8e27878536fdff7518d3e062a72761c552f624ebba5a5f
MD5 39482fd3b9c8ff1da5a1c4c9ad3cdb30
BLAKE2b-256 880f4e37b115056e43714e7550054dd3cd7f4d552da54d7fc58a2fb1407acda5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 816e85000c5d8b02a42b9834f761a5925ef3377d2924e3a7c4c143d2990ce5b8
MD5 f0aa842d7ca775b067ce1621f00de809
BLAKE2b-256 bc33a1310386b8913ce1bdb90c33fa536970e299ad57eb35785f1d71ea1e2ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10e3d2a55f001f6c0a6eb44aa79ea7607091c9352b946692acedb2ac1482f1c9
MD5 46ada9e87aae7a6fe965ad10f2923eb4
BLAKE2b-256 dc48f8b1069788d1bd42e63a960d74d3355242480b750173a42b2749687578ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9beeb647e555afb5657111fa83acb74b99ad88761108eaea66472e8b8547b55b
MD5 734255f4af4d3cf7c52d17c7d3db88b1
BLAKE2b-256 540b334c7c50a2979e15f2a027a41d1ca78ee730d5b1c7f7f4b26d7cb899839d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pygame-2.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6582aa71a681e02e55d43150a9ab41394e6bf4d783d2962a10aea58f424be060
MD5 68718152871b15a322087e2db673af88
BLAKE2b-256 77a96e8cfee4005d9ec165afd9146b930bcb5b921ec66395105316d00e7db6f5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pygame-2.6.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d29eb9a93f12aa3d997b6e3c447ac85b2a4b142ab2548441523a8fcf5e216042
MD5 c0e3d26f6c38d7e587553911e22ecdb4
BLAKE2b-256 62573e97f6c05632ac3424578b4683ef9c36882b8796862517f72236111f76b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb6e8d0547f30ddc845f4fd1e33070ef548233ad0dbf21f7ecea768883d1bbdc
MD5 b3d823d197375ee7304c5e1ba0977361
BLAKE2b-256 759c5cee30344ea2c5c2292c036719322d28decd2699c813b99cb0e636212f99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 163e66de169bd5670c86e27d0b74aad0d2d745e3b63cf4e7eb5b2bff1231ca8d
MD5 39a37ab6dc6a23cc66caf1bb9b712bc3
BLAKE2b-256 b87e8f8357ea9b82bc2229a27f79ccff827a68033a6e5f2221da127422978a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d09fd950725d187aa5207c0cb8eb9ab0d2f8ce9ab8d189c30eeb470e71b617e
MD5 fd1ba2598b4dfa78c0283376932e48e4
BLAKE2b-256 d34d3621df95571465fa09fc65d48b9c70b32c4271b5c11b60aeabf592d3222e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 481cfe1bdbb7fe00acc5950c494c26f00240888619bdc396fc8c39a734797432
MD5 34965f53317570ddadd49aea853e92e5
BLAKE2b-256 53e1620110f7aebf9ae28073f9576b9ef1bf90dceabc0a88007d0241d842a501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15efaa11a80a65dd589a95bebe812fa5bfc7e14946b638a424c5bd9ac6cca1a4
MD5 0eca75f271ba6f8866b7ba5dfe4449fc
BLAKE2b-256 a7ed9f49258c5012a4642fe931e3d3fdb87a210a76c4680ce47ec049bb93afae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pygame-2.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 818b4eaec9c4acb6ac64805d4ca8edd4062bebca77bd815c18739fe2842c97e9
MD5 d59c6a3099ca69b9ea67b9f58f34b3c5
BLAKE2b-256 66a8503d52d2a4fe1463207b80661d3fe7793346e515f369abe2c3a6552fec11

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pygame-2.6.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7bffdd3eaf394d9645331d1c3a5df9d782ebcc3c5a78f3b657c7879a828dd111
MD5 06b7f27c84c60ca88a8dcf05a32f538a
BLAKE2b-256 af9ef4fd29d8a41ef19cbf573a1b0bafc4221aae78f610d307033e1250e1cca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21160d9093533eb831f1b708e630706e5ac16b30750571ec27bc3b8364814f38
MD5 4d33d5531ff3ab29907a85ee62c75144
BLAKE2b-256 e83b070a1bbac12a6914ea08a0b8f26bb349638233a56c111b5d4561f716f8f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a1bf7ab5311bbced70320f1a56701650b4c18231343ae5af42111eea91e0949a
MD5 e0f68a1e08ec03eed623d9547d657991
BLAKE2b-256 e10a57dcdec74445f3fdf3d7dcc786ff38597592a458e8bbfc540aa8a6cb4ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac3f033d2be4a9e23660a96afe2986df3a6916227538a6a0061bc218c5088507
MD5 13d8bc434e038192bcca8b95eef63bf4
BLAKE2b-256 60157cbb41f46678555c7aab6b49eddac38b23e426b1a4244af520b826bbcb57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1a7f2b66ac2e4c9583b6d4c6d6f346fb10a3392c04163f537061f86a448ed5c
MD5 9baa0ab112c75559529e722f5e23c03f
BLAKE2b-256 d250caae48e97e3e9ac8970caf0763c373f4f70b5bc7827ef5f967fdff777da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97ac4e13847b6b293ecaffa5ffce9886c98d09c03309406931cc592f0cea6366
MD5 d1e3597a06a8d1e4e0d762e18920decf
BLAKE2b-256 7c038a99bbe20925ea0e1fe77ccb4bbe0168f6f9d0fcf64d8f45f02e9bcfeb7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygame-2.6.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 10.8 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.6.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 94afd1177680d92f9214c54966ad3517d18210c4fbc5d84a0192d218e93647e0
MD5 1353caf6a0cc4b174ea3d85b381f178e
BLAKE2b-256 21e8557fe64ea5a4d69bff72146532c20e0b8f6f02eaf97df87c899a52e36247

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygame-2.6.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 10.4 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.6.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 2a615d78b2364e86f541458ff41c2a46181b9a1e9eabd97b389282fdf04efbb3
MD5 e8e1ad0a2af9cc8a907ca8a7edb8869e
BLAKE2b-256 42298925749a5a90fbe918205c76c6e19958672c8db83b5844a854fa3344f520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 325a84d072d52e3c2921eff02f87c6a74b7e77d71db3bdf53801c6c975f1b6c4
MD5 9b2d9da487d3caf9f650fbe4ec74ff98
BLAKE2b-256 32eaa95a15beec98f3aae2225394fc1edd896b45867c10801dae9fbead60fdcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c0b11356ac96261162d54a2c2b41a41978f00525631b01ec9c4fe26b01c66595
MD5 1487d48bdb44028d0ea4140230be7f49
BLAKE2b-256 76c448923d17ecc38ce6e00fe20e67519035cf837daef37a49d7ab6a484293af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b46e68cd168f44d0224c670bb72186688fc692d7079715f79d04096757d703d0
MD5 10a85770b736593f01a1a46858686e51
BLAKE2b-256 c03be8a44fed94f784f3c5bf8aa49e295f8a1f8f62b8169598db315bf5a596f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a620883d589926f157b8f1d1f543183ac52e5c30507dea445e3927ae0bee1c54
MD5 465e704500509393eeb76c7d2e4bc04d
BLAKE2b-256 ea689154ed05ced562698c217ce34beeb0481fa8f92c0eede47889ffe86cb617

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygame-2.6.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 10.8 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using 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

File hashes

Hashes for pygame-2.6.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a4b8f04fceddd9a3ac30778d11f0254f59efcd1c382d5801271113cea8b4f2f3
MD5 5e2496c34ab0f8e3c221ad3cc29c2dd4
BLAKE2b-256 dc3cd05d80211cc3c716dc3337a20fbb296f482dd56cc71938f344accce32747

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pygame-2.6.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 10.4 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using 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

File hashes

Hashes for pygame-2.6.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 28b43190436037e428a5be28fc80cf6615304fd528009f2c688cc828f4ff104b
MD5 7ffc1d7fced600316dacb5a8ae6a30d6
BLAKE2b-256 647df4720293559165488eae9d76c9108fec0921167cae198ce8edfc823dc280

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14f9dda45469b254c0f15edaaeaa85d2cc072ff6a83584a265f5d684c7f7efd8
MD5 aad69689ebad785d5ca3aa56355754a5
BLAKE2b-256 7ed102e4127bb22beb3452fef881b545012f92a502f1beb46bae9dc82865945e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f84f15d146d6aa93254008a626c56ef96fed276006202881a47b29757f0cd65a
MD5 6ad461724aca12b69181bb58877f443a
BLAKE2b-256 59a5f838ee059080de2aa3d56f8c12e00873cb49cf7f28aec8ed4eb41f97eb9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bede70ec708057e305815d6546012669226d1d80566785feca9b044216062e7
MD5 2830332377ce4f3c5e1411f8381bee45
BLAKE2b-256 fde8d548e86303802298480a00b9c326e01213a2895bf73d3f6b6cc4fd62bead

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pygame-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 56ffca6059b165bbf64f4b4be23b8068f6a0e220780e4f96ec0bb5ac3c63ec39
MD5 672327302832bb72ad5f8fed490c4f63
BLAKE2b-256 e9454121e79e89ae5d122b133d12e9c6cc4a673f8a191deede27ff379ddfaf7a

See more details on using hashes here.

Supported by

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