pygame-ce


Namepygame-ce JSON
Version 2.4.1 PyPI version JSON
download
home_pagehttps://pyga.me
SummaryPython Game Development
upload_time2024-02-20 06:43:35
maintainer
docs_urlNone
authorA community project.
requires_python>=3.8
licenseLGPL
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://raw.githubusercontent.com/pygame-community/pygame-ce/main/docs/reST/_static/pygame_logo.svg
  :alt: pygame
  :target: https://pyga.me/


|DocsStatus| 
|PyPiVersion| |PyPiLicense|
|Python3| |GithubCommits| |BlackFormatBadge|

**English** `简体中文`_ `Français`_ `فارسی`_ `Español`_
---------------------------------------------------------------------------------------------------

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.

This distribution is called **'pygame - Community Edition'** ('pygame-ce' for short).

It is a fork of the upstream pygame project by its former core developers,
and was created after impossible challenges prevented them from continuing development upstream.
The new distribution aims to offer more frequent releases, continuous bugfixes and enhancements,
and a more democratic governance model.

New contributors are welcome!


Installation
------------

::

   pip install pygame-ce


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-ce --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.


Building From Source
--------------------

If you want to use features that are currently in development,
or you want to contribute to pygame-ce, you will need to build pygame-ce
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`_.


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 documentation`_ and the `pygame-ce documentation`_.

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. Transform.rotozoom has an embedded version 
of SDL_rotozoom, and gfxdraw has an embedded version of SDL_gfx.
Dependency versions:


+----------+------------------------+
| CPython  | >= 3.8 (Or use PyPy3)  |
+----------+------------------------+
| SDL      | >= 2.0.10              |
+----------+------------------------+
| SDL_mixer| >= 2.0.4               |
+----------+------------------------+
| SDL_image| >= 2.0.4               |
+----------+------------------------+
| SDL_ttf  | >= 2.0.15              |
+----------+------------------------+



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-ce 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.


.. |PyPiVersion| image:: https://img.shields.io/pypi/v/pygame-ce.svg?v=1
   :target: https://pypi.python.org/pypi/pygame-ce

.. |PyPiLicense| image:: https://img.shields.io/pypi/l/pygame-ce.svg?v=1
   :target: https://pypi.python.org/pypi/pygame-ce

.. |Python3| image:: https://img.shields.io/badge/python-3-blue.svg?v=1

.. |GithubCommits| image:: https://img.shields.io/github/commits-since/pygame-community/pygame-ce/2.3.0.svg
   :target: https://github.com/pygame-community/pygame-ce/compare/2.3.0...main

.. |DocsStatus| image:: https://img.shields.io/website?down_message=offline&label=docs&up_message=online&url=https%3A%2F%2Fpyga.me%2Fdocs%2F
   :target: https://pyga.me/docs/
   
.. |BlackFormatBadge| image:: https://img.shields.io/badge/code%20style-black-000000.svg
    :target: https://github.com/psf/black

.. _Pygame: https://pyga.me
.. _pygame-ce documentation: https://pyga.me/docs/
.. _pygame documentation: https://www.pygame.org/docs/
.. _Simple DirectMedia Layer library: https://www.libsdl.org
.. _Compilation wiki page: https://github.com/pygame-community/pygame-ce/wiki#compiling
.. _docs page: https://pyga.me/docs
.. _GNU LGPL version 2.1: https://www.gnu.org/copyleft/lesser.html

.. _简体中文: ./docs/readmes/README.zh-cn.rst
.. _Français: ./docs/readmes/README.fr.rst
.. _فارسی: ./docs/readmes/README.fa.rst
.. _Español: ./docs/readmes/README.es.rst

            

Raw data

            {
    "_id": null,
    "home_page": "https://pyga.me",
    "name": "pygame-ce",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "",
    "keywords": "",
    "author": "A community project.",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/dc/b1/64fffc2c8664497ae82b2afb4f5efe0130d38b39f2d25af0288c4261df3e/pygame-ce-2.4.1.tar.gz",
    "platform": null,
    "description": ".. image:: https://raw.githubusercontent.com/pygame-community/pygame-ce/main/docs/reST/_static/pygame_logo.svg\n  :alt: pygame\n  :target: https://pyga.me/\n\n\n|DocsStatus| \n|PyPiVersion| |PyPiLicense|\n|Python3| |GithubCommits| |BlackFormatBadge|\n\n**English** `\u7b80\u4f53\u4e2d\u6587`_ `Fran\u00e7ais`_ `\u0641\u0627\u0631\u0633\u06cc`_ `Espa\u00f1ol`_\n---------------------------------------------------------------------------------------------------\n\nPygame_ is a free and open-source cross-platform library\nfor the development of multimedia applications like video games using Python.\nIt uses the `Simple DirectMedia Layer library`_ and several other\npopular libraries to abstract the most common functions, making writing\nthese programs a more intuitive task.\n\nThis distribution is called **'pygame - Community Edition'** ('pygame-ce' for short).\n\nIt is a fork of the upstream pygame project by its former core developers,\nand was created after impossible challenges prevented them from continuing development upstream.\nThe new distribution aims to offer more frequent releases, continuous bugfixes and enhancements,\nand a more democratic governance model.\n\nNew contributors are welcome!\n\n\nInstallation\n------------\n\n::\n\n   pip install pygame-ce\n\n\nHelp\n----\n\nIf you are just getting started with pygame, you should be able to\nget started fairly quickly.  Pygame comes with many tutorials and\nintroductions.  There is also full reference documentation for the\nentire library. Browse the documentation on the `docs page`_. You\ncan also browse the documentation locally by running\n``python -m pygame.docs`` in your terminal. If the docs aren't found\nlocally, it'll launch the online website instead.\n\nThe online documentation stays up to date with the development version\nof pygame on github.  This may be a bit newer than the version of pygame\nyou are using. To upgrade to the latest full release, run \n``pip install pygame-ce --upgrade`` in your terminal.\n\nBest of all, the examples directory has many playable small programs\nwhich can get you started playing with the code right away.\n\n\nBuilding From Source\n--------------------\n\nIf you want to use features that are currently in development,\nor you want to contribute to pygame-ce, you will need to build pygame-ce\nlocally from its source code, rather than pip installing it.\n\nInstalling from source is fairly automated. The most work will\ninvolve compiling and installing all the pygame dependencies.  Once\nthat is done, run the ``setup.py`` script which will attempt to\nauto-configure, build, and install pygame.\n\nMuch more information about installing and compiling is available\non the `Compilation wiki page`_.\n\n\nCredits\n-------\n\nThanks to everyone who has helped contribute to this library.\nSpecial thanks are also in order.\n\n* Marcus Von Appen: many changes, and fixes, 1.7.1+ freebsd maintainer\n* Lenard Lindstrom: the 1.8+ windows maintainer, many changes, and fixes\n* Brian Fisher for svn auto builder, bug tracker and many contributions\n* Rene Dudfield: many changes, and fixes, 1.7+ release manager/maintainer\n* Phil Hassey for his work on the pygame.org website\n* DR0ID for his work on the sprite module\n* Richard Goedeken for his smoothscale function\n* Ulf Ekstr\u00f6m for his pixel perfect collision detection code\n* Pete Shinners: original author\n* David Clark for filling the right-hand-man position\n* Ed Boraas and Francis Irving: Debian packages\n* Maxim Sobolev: FreeBSD packaging\n* Bob Ippolito: macOS and OS X porting (much work!)\n* Jan Ekhol, Ray Kelm, and Peter Nicolai: putting up with early design ideas\n* Nat Pryce for starting our unit tests\n* Dan Richter for documentation work\n* TheCorruptor for his incredible logos and graphics\n* Nicholas Dudfield: many test improvements\n* Alex Folkner for pygame-ctypes\n\nThanks to those sending in patches and fixes: Niki Spahiev, Gordon\nTyler, Nathaniel Pryce, Dave Wallace, John Popplewell, Michael Urman,\nAndrew Straw, Michael Hudson, Ole Martin Bjoerndalen, Herve Cauwelier,\nJames Mazer, Lalo Martins, Timothy Stranex, Chad Lester, Matthias\nSpiller, Bo Jangeborg, Dmitry Borisov, Campbell Barton, Diego Essaya,\nEyal Lotem, Regis Desgroppes, Emmanuel Hainry, Randy Kaelber\nMatthew L Daniel, Nirav Patel, Forrest Voight, Charlie Nolan,\nFrankie Robertson, John Krukoff, Lorenz Quack, Nick Irvine,\nMichael George, Saul Spatz, Thomas Ibbotson, Tom Rothamel, Evan Kroske,\nCambell Barton.\n\nAnd our bug hunters above and beyond: Angus, Guillaume Proux, Frank\nRaiser, Austin Henry, Kaweh Kazemi, Arturo Aldama, Mike Mulcheck,\nMichael Benfield, David Lau\n\nThere's many more folks out there who've submitted helpful ideas, kept\nthis project going, and basically made our life easier.  Thanks!\n\nMany thank you's for people making documentation comments, and adding to the\n`pygame documentation`_ and the `pygame-ce documentation`_.\n\nAlso many thanks for people creating games and putting them on the\npygame.org website for others to learn from and enjoy.\n\nLots of thanks to James Paige for hosting the pygame bugzilla.\n\nAlso a big thanks to Roger Dingledine and the crew at SEUL.ORG for our\nexcellent hosting.\n\nDependencies\n------------\n\nPygame is obviously strongly dependent on SDL and Python. It also\nlinks to and embeds several other smaller libraries. The font\nmodule relies on SDL_ttf, which is dependent on freetype. The mixer\n(and mixer.music) modules depend on SDL_mixer. The image module\ndepends on SDL_image. Transform.rotozoom has an embedded version \nof SDL_rotozoom, and gfxdraw has an embedded version of SDL_gfx.\nDependency versions:\n\n\n+----------+------------------------+\n| CPython  | >= 3.8 (Or use PyPy3)  |\n+----------+------------------------+\n| SDL      | >= 2.0.10              |\n+----------+------------------------+\n| SDL_mixer| >= 2.0.4               |\n+----------+------------------------+\n| SDL_image| >= 2.0.4               |\n+----------+------------------------+\n| SDL_ttf  | >= 2.0.15              |\n+----------+------------------------+\n\n\n\nLicense\n-------\n\nThis library is distributed under `GNU LGPL version 2.1`_, which can\nbe found in the file ``docs/LGPL.txt``.  We reserve the right to place\nfuture versions of this library under a different license.\n\nThis basically means you can use pygame in any project you want,\nbut if you make any changes or additions to pygame itself, those\nmust be released with a compatible license (preferably submitted\nback to the pygame-ce project).  Closed source and commercial games are fine.\n\nThe programs in the ``examples`` subdirectory are in the public domain.\n\nSee docs/licenses for licenses of dependencies.\n\n\n.. |PyPiVersion| image:: https://img.shields.io/pypi/v/pygame-ce.svg?v=1\n   :target: https://pypi.python.org/pypi/pygame-ce\n\n.. |PyPiLicense| image:: https://img.shields.io/pypi/l/pygame-ce.svg?v=1\n   :target: https://pypi.python.org/pypi/pygame-ce\n\n.. |Python3| image:: https://img.shields.io/badge/python-3-blue.svg?v=1\n\n.. |GithubCommits| image:: https://img.shields.io/github/commits-since/pygame-community/pygame-ce/2.3.0.svg\n   :target: https://github.com/pygame-community/pygame-ce/compare/2.3.0...main\n\n.. |DocsStatus| image:: https://img.shields.io/website?down_message=offline&label=docs&up_message=online&url=https%3A%2F%2Fpyga.me%2Fdocs%2F\n   :target: https://pyga.me/docs/\n   \n.. |BlackFormatBadge| image:: https://img.shields.io/badge/code%20style-black-000000.svg\n    :target: https://github.com/psf/black\n\n.. _Pygame: https://pyga.me\n.. _pygame-ce documentation: https://pyga.me/docs/\n.. _pygame documentation: https://www.pygame.org/docs/\n.. _Simple DirectMedia Layer library: https://www.libsdl.org\n.. _Compilation wiki page: https://github.com/pygame-community/pygame-ce/wiki#compiling\n.. _docs page: https://pyga.me/docs\n.. _GNU LGPL version 2.1: https://www.gnu.org/copyleft/lesser.html\n\n.. _\u7b80\u4f53\u4e2d\u6587: ./docs/readmes/README.zh-cn.rst\n.. _Fran\u00e7ais: ./docs/readmes/README.fr.rst\n.. _\u0641\u0627\u0631\u0633\u06cc: ./docs/readmes/README.fa.rst\n.. _Espa\u00f1ol: ./docs/readmes/README.es.rst\n",
    "bugtrack_url": null,
    "license": "LGPL",
    "summary": "Python Game Development",
    "version": "2.4.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/pygame-community/pygame-ce/issues",
        "Documentation": "https://pyga.me/docs",
        "Homepage": "https://pyga.me",
        "Source": "https://github.com/pygame-community/pygame-ce"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a94a39a8b71afd1b65f618c864acf0758760402d6fa3eff755e22cacde944c0",
                "md5": "39c103c2db509532386ad74af94e317b",
                "sha256": "d1a932298657ea63fedba0c5fdff018ff5c7a92718df58102de23f0646f1720a"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp310-cp310-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "39c103c2db509532386ad74af94e317b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 16024373,
            "upload_time": "2024-02-20T06:41:41",
            "upload_time_iso_8601": "2024-02-20T06:41:41.958906Z",
            "url": "https://files.pythonhosted.org/packages/4a/94/a39a8b71afd1b65f618c864acf0758760402d6fa3eff755e22cacde944c0/pygame_ce-2.4.1-cp310-cp310-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c4a3e610a31996e7a9070595231c50d936682b9ec00f5cfb18f66777c1ff12b",
                "md5": "c2187bbb20ced813e39eff7c0f9fd595",
                "sha256": "560e502bb53678bd323011b486ac140a31579e2c792b1c61fcd0a375eb3bb579"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c2187bbb20ced813e39eff7c0f9fd595",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 13423253,
            "upload_time": "2024-02-20T06:41:44",
            "upload_time_iso_8601": "2024-02-20T06:41:44.645368Z",
            "url": "https://files.pythonhosted.org/packages/2c/4a/3e610a31996e7a9070595231c50d936682b9ec00f5cfb18f66777c1ff12b/pygame_ce-2.4.1-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c666955fd759d4b6206d2d317abce5ee62227d31c16f19922863dbc272f1c5e6",
                "md5": "d2a3d4b8492a5e1ae2f8c0c8971af7c8",
                "sha256": "ba19c6f260e3df61fdc4782755c0adac62290ba029207c2a214730cb865e0a1f"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d2a3d4b8492a5e1ae2f8c0c8971af7c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 17122954,
            "upload_time": "2024-02-20T07:11:09",
            "upload_time_iso_8601": "2024-02-20T07:11:09.718129Z",
            "url": "https://files.pythonhosted.org/packages/c6/66/955fd759d4b6206d2d317abce5ee62227d31c16f19922863dbc272f1c5e6/pygame_ce-2.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d7d7f18da8df541ccd7e777f201810b257b6a8af75cf63c56cae8301e507b898",
                "md5": "dd145c5eddf40dd575de1d3aaecc0454",
                "sha256": "0e11cdef4c3c76d84f2c2fab61cc05ad118e2161768ddc8ff2db6b971e60af12"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "dd145c5eddf40dd575de1d3aaecc0454",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 17336566,
            "upload_time": "2024-02-20T06:41:47",
            "upload_time_iso_8601": "2024-02-20T06:41:47.455994Z",
            "url": "https://files.pythonhosted.org/packages/d7/d7/f18da8df541ccd7e777f201810b257b6a8af75cf63c56cae8301e507b898/pygame_ce-2.4.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c1b5730179306e04c57be92da1b13a196654f9a026e5dbb3e83c26ed9d3669f",
                "md5": "7eb15803dbfa92b2436c6b5841524afc",
                "sha256": "51dac117469b16cd97bcd74f5e16e085fa44c96346108ee8821843c02877818a"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7eb15803dbfa92b2436c6b5841524afc",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 17268074,
            "upload_time": "2024-02-20T06:41:50",
            "upload_time_iso_8601": "2024-02-20T06:41:50.233380Z",
            "url": "https://files.pythonhosted.org/packages/0c/1b/5730179306e04c57be92da1b13a196654f9a026e5dbb3e83c26ed9d3669f/pygame_ce-2.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1414e346c28abd176af9b61349ccbc8fac093fa4063648eef768a9f478e4bd8a",
                "md5": "661375ea640c697b21e76f98934ff2e9",
                "sha256": "3d7abf5f174ab5bce2a94914506c80ce979722b7002e23c1b51ef11d1aa30409"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "661375ea640c697b21e76f98934ff2e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 11719168,
            "upload_time": "2024-02-20T06:41:53",
            "upload_time_iso_8601": "2024-02-20T06:41:53.457679Z",
            "url": "https://files.pythonhosted.org/packages/14/14/e346c28abd176af9b61349ccbc8fac093fa4063648eef768a9f478e4bd8a/pygame_ce-2.4.1-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c2239b2a062c94b6665981f5502b791290c15ae6b70b5811aba5d0791ad18729",
                "md5": "5fa5f4c3e35faea5ff3930fa3c0e59f8",
                "sha256": "5b7b2b2f75b833912b620b04a2f1e17cd3a45414d4b8ebd2cdb67c74bdd9b734"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "5fa5f4c3e35faea5ff3930fa3c0e59f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 12193835,
            "upload_time": "2024-02-20T06:42:00",
            "upload_time_iso_8601": "2024-02-20T06:42:00.159498Z",
            "url": "https://files.pythonhosted.org/packages/c2/23/9b2a062c94b6665981f5502b791290c15ae6b70b5811aba5d0791ad18729/pygame_ce-2.4.1-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf9a746398ae9341569c23286287a6299abbd65b20638a3dd16148d1dad3d9fd",
                "md5": "dc48610715bd0677ec85012649543f31",
                "sha256": "9b48f93b2a7cbd4c7ffe949c39129f7ce07942a8de3371f6b56347361cf601b0"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp311-cp311-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dc48610715bd0677ec85012649543f31",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 16027424,
            "upload_time": "2024-02-20T06:42:03",
            "upload_time_iso_8601": "2024-02-20T06:42:03.158595Z",
            "url": "https://files.pythonhosted.org/packages/cf/9a/746398ae9341569c23286287a6299abbd65b20638a3dd16148d1dad3d9fd/pygame_ce-2.4.1-cp311-cp311-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a0a39481a5edf2b39b5d854a04810e715e61b349ba571ae6971b9fc103040c5",
                "md5": "a93a1c0223c48a5f9fc78fed5d153bcc",
                "sha256": "5b1b354de323b516af2660f14f2efe24ad3a818d859cfb99fbfcedda01518bcc"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "a93a1c0223c48a5f9fc78fed5d153bcc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 13425715,
            "upload_time": "2024-02-20T06:42:05",
            "upload_time_iso_8601": "2024-02-20T06:42:05.921271Z",
            "url": "https://files.pythonhosted.org/packages/5a/0a/39481a5edf2b39b5d854a04810e715e61b349ba571ae6971b9fc103040c5/pygame_ce-2.4.1-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c143e6413e415beac260207d2b29e3502e7f875fb8e5af12fee0a89517c5e754",
                "md5": "2b8d0166aabc5457b30bf84f2ef8f13a",
                "sha256": "4404b63202fc6328fd80cc2ee335e0e22c36f012a33733ad61e1c41de15182d9"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2b8d0166aabc5457b30bf84f2ef8f13a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 17358529,
            "upload_time": "2024-02-20T07:11:20",
            "upload_time_iso_8601": "2024-02-20T07:11:20.935947Z",
            "url": "https://files.pythonhosted.org/packages/c1/43/e6413e415beac260207d2b29e3502e7f875fb8e5af12fee0a89517c5e754/pygame_ce-2.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "080e9b851fab77d14a612542a0dea39f12419d0109b404a0dd378b3946b4c817",
                "md5": "b25a2502ad6ef9acb66089806d43ea5b",
                "sha256": "9cd31f46391262e0c31068e9957b8a6d569119eedb9a2452720dd4736735369f"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "b25a2502ad6ef9acb66089806d43ea5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 17550124,
            "upload_time": "2024-02-20T06:42:08",
            "upload_time_iso_8601": "2024-02-20T06:42:08.594534Z",
            "url": "https://files.pythonhosted.org/packages/08/0e/9b851fab77d14a612542a0dea39f12419d0109b404a0dd378b3946b4c817/pygame_ce-2.4.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58dc79561ff0174020a5d3c920eaa3a6f5de1fed562206dafe15eb0cbb72b6ee",
                "md5": "a32e8d13101adb7b68bd8e9fb9121b83",
                "sha256": "2156c7c4a06a27c5372b72d63e9d32bbedf9dc0ce22d72f06eea00246c2d73b6"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a32e8d13101adb7b68bd8e9fb9121b83",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 17507790,
            "upload_time": "2024-02-20T06:42:11",
            "upload_time_iso_8601": "2024-02-20T06:42:11.451283Z",
            "url": "https://files.pythonhosted.org/packages/58/dc/79561ff0174020a5d3c920eaa3a6f5de1fed562206dafe15eb0cbb72b6ee/pygame_ce-2.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55773a1fcd7bb505d5503bb0e8fa8fbd34627ecb6823f87eaf3f1a5ed79f4034",
                "md5": "ae749e59a092e19992ff49bdfc232695",
                "sha256": "d6f832b6b352e1fd6fc67074a00a2b082c18e6e6bc4190e827dabe9605fba5c1"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "ae749e59a092e19992ff49bdfc232695",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 11720191,
            "upload_time": "2024-02-20T06:42:14",
            "upload_time_iso_8601": "2024-02-20T06:42:14.831196Z",
            "url": "https://files.pythonhosted.org/packages/55/77/3a1fcd7bb505d5503bb0e8fa8fbd34627ecb6823f87eaf3f1a5ed79f4034/pygame_ce-2.4.1-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "083f414bfc227b9be841f5de3969658709faee1e1f4292c6630109bedb525da7",
                "md5": "b44bf27a0fc8f29fec438f97a8d6ab97",
                "sha256": "60f4ff63be4fa3b5a20f014988a5bb588be176acc774ca079c5494f500b53295"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b44bf27a0fc8f29fec438f97a8d6ab97",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 12196222,
            "upload_time": "2024-02-20T06:42:17",
            "upload_time_iso_8601": "2024-02-20T06:42:17.035469Z",
            "url": "https://files.pythonhosted.org/packages/08/3f/414bfc227b9be841f5de3969658709faee1e1f4292c6630109bedb525da7/pygame_ce-2.4.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "462aff48f3385a88735f32d0ae28b02e6c45c5b9e66699fe8146f048d7248c28",
                "md5": "cb4eb306c0cc552ba482593396cb5adf",
                "sha256": "a197952d4446b9cffcfc3c0b3ae396a36279925ad3ba920f85327e87c903608d"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp312-cp312-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "cb4eb306c0cc552ba482593396cb5adf",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 16032191,
            "upload_time": "2024-02-20T06:42:19",
            "upload_time_iso_8601": "2024-02-20T06:42:19.227530Z",
            "url": "https://files.pythonhosted.org/packages/46/2a/ff48f3385a88735f32d0ae28b02e6c45c5b9e66699fe8146f048d7248c28/pygame_ce-2.4.1-cp312-cp312-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5deec78bd3ee8e056a273bda44d5dd5a50660301ccd306ff13b90d333da0ac1",
                "md5": "03939e7b6985048461ddf5b7ed5a5a70",
                "sha256": "6fca3cf129daf8a75a1fac441756600addfd2f47fcfbb24cc744c6824cec9076"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "03939e7b6985048461ddf5b7ed5a5a70",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 13431326,
            "upload_time": "2024-02-20T06:42:21",
            "upload_time_iso_8601": "2024-02-20T06:42:21.624560Z",
            "url": "https://files.pythonhosted.org/packages/e5/de/ec78bd3ee8e056a273bda44d5dd5a50660301ccd306ff13b90d333da0ac1/pygame_ce-2.4.1-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3113576e2039423eef37a24f9bcbd7e07be0b9752aec5743195957a305884591",
                "md5": "d877f3777a431e6362ef8dd0973cfd2d",
                "sha256": "3495d07eb78f4a4e7dc46b0a6fc1d9fbbaaa0205cbcfaf19108409fbf837018b"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d877f3777a431e6362ef8dd0973cfd2d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 17344604,
            "upload_time": "2024-02-20T07:11:31",
            "upload_time_iso_8601": "2024-02-20T07:11:31.991283Z",
            "url": "https://files.pythonhosted.org/packages/31/13/576e2039423eef37a24f9bcbd7e07be0b9752aec5743195957a305884591/pygame_ce-2.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "81168edeef0cf583779615b7781eb83f74c300592f39d76baf5fcb41e25e4f97",
                "md5": "0defd0b0d2367cd4d15ac33cb1ffda58",
                "sha256": "bb34ecc0989e2852c14746828c6c696263b60e4bf67f18987dde9df3e1de09dc"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "0defd0b0d2367cd4d15ac33cb1ffda58",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 17528335,
            "upload_time": "2024-02-20T06:42:24",
            "upload_time_iso_8601": "2024-02-20T06:42:24.425484Z",
            "url": "https://files.pythonhosted.org/packages/81/16/8edeef0cf583779615b7781eb83f74c300592f39d76baf5fcb41e25e4f97/pygame_ce-2.4.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59bb0f6d3142772dae694184ddd10a5fb540b512c4e8a8cce688ad3e197c85c0",
                "md5": "1e7ac463a72123528cd702ae6d0d8662",
                "sha256": "a1635743e0daa9a09992339b25f09c802c45e1ec93c8e600c5d3bd2639ad5d97"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1e7ac463a72123528cd702ae6d0d8662",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 17505826,
            "upload_time": "2024-02-20T06:42:26",
            "upload_time_iso_8601": "2024-02-20T06:42:26.937815Z",
            "url": "https://files.pythonhosted.org/packages/59/bb/0f6d3142772dae694184ddd10a5fb540b512c4e8a8cce688ad3e197c85c0/pygame_ce-2.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee03ff558892f319e48d65a5850d165f7a7dcfc93e1ce94cc411b696ba520ae0",
                "md5": "c92b14b87453dc1744b23fa8046815d3",
                "sha256": "50f315e3002373650d4ca4d8e4bdc34fdfd5d2c1b7e1bbf36a7dc78db68de7e5"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "c92b14b87453dc1744b23fa8046815d3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 11721223,
            "upload_time": "2024-02-20T06:42:29",
            "upload_time_iso_8601": "2024-02-20T06:42:29.184489Z",
            "url": "https://files.pythonhosted.org/packages/ee/03/ff558892f319e48d65a5850d165f7a7dcfc93e1ce94cc411b696ba520ae0/pygame_ce-2.4.1-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f686f668ed487b9befac1bf2a037080103ec1d0c5f0f41d53bcf22376cc01ea",
                "md5": "dd0936d69fa23a3ade914af277c1d6c1",
                "sha256": "42a324f14e4f8485ec180cd7bc912caf48d580599c58d6caa1d83b5e5ed251c7"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "dd0936d69fa23a3ade914af277c1d6c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 12196997,
            "upload_time": "2024-02-20T06:42:31",
            "upload_time_iso_8601": "2024-02-20T06:42:31.487976Z",
            "url": "https://files.pythonhosted.org/packages/3f/68/6f668ed487b9befac1bf2a037080103ec1d0c5f0f41d53bcf22376cc01ea/pygame_ce-2.4.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "907f475ec19feca8b1355e360fcba54dbb67e8a2d8411a887ee315a6e2ff3bba",
                "md5": "fddee55dd7c187d50e086c74ae07c431",
                "sha256": "e37db7e8555a845fdf2ad2bf91ef7ba3af363d79f7f7a706139fe340860319cc"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp38-cp38-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fddee55dd7c187d50e086c74ae07c431",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 16027169,
            "upload_time": "2024-02-20T06:42:33",
            "upload_time_iso_8601": "2024-02-20T06:42:33.739833Z",
            "url": "https://files.pythonhosted.org/packages/90/7f/475ec19feca8b1355e360fcba54dbb67e8a2d8411a887ee315a6e2ff3bba/pygame_ce-2.4.1-cp38-cp38-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de84f63c6e36884e1679bbd819e2329de6d1284179d6b4eec3256824480a4931",
                "md5": "fc991df9c2c9c8ba666ed3fa86111c38",
                "sha256": "6bb68112dcb5cadc82d8166d08cca7ebf6d512d59f0d30c972f302de4dfd2106"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fc991df9c2c9c8ba666ed3fa86111c38",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 13425493,
            "upload_time": "2024-02-20T06:42:36",
            "upload_time_iso_8601": "2024-02-20T06:42:36.890864Z",
            "url": "https://files.pythonhosted.org/packages/de/84/f63c6e36884e1679bbd819e2329de6d1284179d6b4eec3256824480a4931/pygame_ce-2.4.1-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "64589361a280809cc68611653be75e001f2f4928e22a1cef11c3d5cf9684bae9",
                "md5": "7c549718bf38b37148d075354054c635",
                "sha256": "4086732bc167a515d76d54caf79b0cbee36dac7f01547f5743b5b677a82bd315"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "7c549718bf38b37148d075354054c635",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 17189357,
            "upload_time": "2024-02-20T07:11:41",
            "upload_time_iso_8601": "2024-02-20T07:11:41.991012Z",
            "url": "https://files.pythonhosted.org/packages/64/58/9361a280809cc68611653be75e001f2f4928e22a1cef11c3d5cf9684bae9/pygame_ce-2.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "90618da8a22d4bcfd60c145de3804e7f6219c405685c0edd65ac941d24c03103",
                "md5": "88c797b26e3226872d126c77cf9a52b5",
                "sha256": "51cba484d7a94e2ceb5360eef0157778ddcb34afbf8ffb7045e9f57edb8ad105"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "88c797b26e3226872d126c77cf9a52b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 17405889,
            "upload_time": "2024-02-20T06:42:39",
            "upload_time_iso_8601": "2024-02-20T06:42:39.173069Z",
            "url": "https://files.pythonhosted.org/packages/90/61/8da8a22d4bcfd60c145de3804e7f6219c405685c0edd65ac941d24c03103/pygame_ce-2.4.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "63a042972afcf2c603a5acc285b5bad0a304f8931300ae754ad11b8986364f56",
                "md5": "c163d87022c2cd4aca4affe8f400ab02",
                "sha256": "50fd863edd88a635e1098acd082e9e6c02c7fd40725cc4da1bfa67696ea8e126"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c163d87022c2cd4aca4affe8f400ab02",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 17329439,
            "upload_time": "2024-02-20T06:42:41",
            "upload_time_iso_8601": "2024-02-20T06:42:41.678815Z",
            "url": "https://files.pythonhosted.org/packages/63/a0/42972afcf2c603a5acc285b5bad0a304f8931300ae754ad11b8986364f56/pygame_ce-2.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6aef48fa5d2d984a3ad3fd3dfcbcbe92657618f6ea2ac9f0a261a4631fd5f60d",
                "md5": "fc1a9abf43a67d0fbe041ca8c54774c2",
                "sha256": "928a91744a30b24a8c553ae4809b76e738ff910e65866be42ab9c89909743077"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "fc1a9abf43a67d0fbe041ca8c54774c2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 11722057,
            "upload_time": "2024-02-20T06:42:44",
            "upload_time_iso_8601": "2024-02-20T06:42:44.194153Z",
            "url": "https://files.pythonhosted.org/packages/6a/ef/48fa5d2d984a3ad3fd3dfcbcbe92657618f6ea2ac9f0a261a4631fd5f60d/pygame_ce-2.4.1-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb50590f6a50c31ce43c5d0995d6969e247a1a48630faa20b6c0639e7bcc33f0",
                "md5": "f8bde08e8e5141dcdfa0c41b4970bc34",
                "sha256": "0ead167d28712716bbac2a26b851b0e9657f5ab2edb163f3d24b1d32de46efe3"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f8bde08e8e5141dcdfa0c41b4970bc34",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 12197151,
            "upload_time": "2024-02-20T06:42:46",
            "upload_time_iso_8601": "2024-02-20T06:42:46.652220Z",
            "url": "https://files.pythonhosted.org/packages/fb/50/590f6a50c31ce43c5d0995d6969e247a1a48630faa20b6c0639e7bcc33f0/pygame_ce-2.4.1-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "11b69cf5843c4965bd045979a54ed9c43f39717ca2216ffb5382db52ca080dcb",
                "md5": "56cdaceab8281fd0e57e049e29d10bf7",
                "sha256": "b6b9aafa538b7102b290fd533caf84f869f747a187bf9e68010e12a40dedfb9e"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp39-cp39-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "56cdaceab8281fd0e57e049e29d10bf7",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 16026701,
            "upload_time": "2024-02-20T06:42:49",
            "upload_time_iso_8601": "2024-02-20T06:42:49.152350Z",
            "url": "https://files.pythonhosted.org/packages/11/b6/9cf5843c4965bd045979a54ed9c43f39717ca2216ffb5382db52ca080dcb/pygame_ce-2.4.1-cp39-cp39-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a25840c8d7db0ba776de0716d2d1a5ed5ab11e9307b2da1c1a000ecd9dbc54a3",
                "md5": "cd977120ce0d0f00e5ce6f1b1746891d",
                "sha256": "be5fea1b601f7f4834d53b3dc178e8a96a5c1dcfbcd13aba9e94681c98ab146e"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd977120ce0d0f00e5ce6f1b1746891d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 13425459,
            "upload_time": "2024-02-20T06:42:51",
            "upload_time_iso_8601": "2024-02-20T06:42:51.867193Z",
            "url": "https://files.pythonhosted.org/packages/a2/58/40c8d7db0ba776de0716d2d1a5ed5ab11e9307b2da1c1a000ecd9dbc54a3/pygame_ce-2.4.1-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c5e2837d8eeea7345716c78787382a1132cc90a0af0baad5dae17d9107d6fdd",
                "md5": "65b1a16f3a809cb70491d8c7ae6354e9",
                "sha256": "7abef7fc4b49bced79a0e180e76e941b5507b9ff8901167d1fe6d6e18bf24f79"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "65b1a16f3a809cb70491d8c7ae6354e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 17123637,
            "upload_time": "2024-02-20T07:11:52",
            "upload_time_iso_8601": "2024-02-20T07:11:52.188392Z",
            "url": "https://files.pythonhosted.org/packages/4c/5e/2837d8eeea7345716c78787382a1132cc90a0af0baad5dae17d9107d6fdd/pygame_ce-2.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "683053834a7c27eca1a3407cada4243a1856ec3a7a56b104671976b276671e86",
                "md5": "e86660bbf4f0526e8a55733a61959773",
                "sha256": "5c3d786b165975fa18b74e6addff70c3c3fed2df3c7d26c82337eb24a60920c0"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "e86660bbf4f0526e8a55733a61959773",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 17343573,
            "upload_time": "2024-02-20T06:42:54",
            "upload_time_iso_8601": "2024-02-20T06:42:54.214324Z",
            "url": "https://files.pythonhosted.org/packages/68/30/53834a7c27eca1a3407cada4243a1856ec3a7a56b104671976b276671e86/pygame_ce-2.4.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "309d15cba5e4f4950a48cafcc9d7970f4b6fbecae79d7f97c10f6d7a0c27ca59",
                "md5": "e950b983b0d77de0b3eb5691b31beb47",
                "sha256": "54f4b4936fb204f7fe9effe1ced306da6d06ccd7482224ea75eb09c594a27e24"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e950b983b0d77de0b3eb5691b31beb47",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 17266678,
            "upload_time": "2024-02-20T06:42:56",
            "upload_time_iso_8601": "2024-02-20T06:42:56.593297Z",
            "url": "https://files.pythonhosted.org/packages/30/9d/15cba5e4f4950a48cafcc9d7970f4b6fbecae79d7f97c10f6d7a0c27ca59/pygame_ce-2.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e95e951eaaa7dd2d54c40e78b28ee921a4e2eba5dd52f51e1b45990db22c77e",
                "md5": "feecdecb8d97fba031a9c5b35a4339a3",
                "sha256": "2f69b98d203a44e3ba1fe0e8e71dcac3b230a345d59980e927639f58e68c97d6"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "feecdecb8d97fba031a9c5b35a4339a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 11721687,
            "upload_time": "2024-02-20T06:42:59",
            "upload_time_iso_8601": "2024-02-20T06:42:59.073219Z",
            "url": "https://files.pythonhosted.org/packages/7e/95/e951eaaa7dd2d54c40e78b28ee921a4e2eba5dd52f51e1b45990db22c77e/pygame_ce-2.4.1-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b4cb104cb597be9f7a3bee476b0d3906f78b1077876979104849ee8bf3e5bad",
                "md5": "cccdff22fef7794cad2aec5019e71fbf",
                "sha256": "8bf8c85edb6f9dcd97737ddcb61eb5cee5541ef5007955c6c7417af0159a5a31"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cccdff22fef7794cad2aec5019e71fbf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 12196706,
            "upload_time": "2024-02-20T06:43:01",
            "upload_time_iso_8601": "2024-02-20T06:43:01.457840Z",
            "url": "https://files.pythonhosted.org/packages/0b/4c/b104cb597be9f7a3bee476b0d3906f78b1077876979104849ee8bf3e5bad/pygame_ce-2.4.1-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba7282ede2391f36ac8ba6edbec6a5bf59f39f42f4049aad5559d89a9e4b233d",
                "md5": "7dfac7c6b1a75fc26ad517cf4aafc87c",
                "sha256": "9695cd834b962faf654edcb81a7a69768b0409c341aa63cb5443da98fef69c68"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp310-pypy310_pp73-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7dfac7c6b1a75fc26ad517cf4aafc87c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 15874818,
            "upload_time": "2024-02-20T06:43:04",
            "upload_time_iso_8601": "2024-02-20T06:43:04.399514Z",
            "url": "https://files.pythonhosted.org/packages/ba/72/82ede2391f36ac8ba6edbec6a5bf59f39f42f4049aad5559d89a9e4b233d/pygame_ce-2.4.1-pp310-pypy310_pp73-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "148148bb582c0834543456e433e534570051bbfef269fdcd60f8558ed184ca9e",
                "md5": "4ab2765bcfb58823cd0223115f0878f4",
                "sha256": "6529ce436de8b420797ec05a963d6ecfd2be6b33c8d251b9abebfdef5bfa1a6f"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4ab2765bcfb58823cd0223115f0878f4",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 13437212,
            "upload_time": "2024-02-20T07:12:03",
            "upload_time_iso_8601": "2024-02-20T07:12:03.075055Z",
            "url": "https://files.pythonhosted.org/packages/14/81/48bb582c0834543456e433e534570051bbfef269fdcd60f8558ed184ca9e/pygame_ce-2.4.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "795f552aef70a6f4fb8306052c96bde655322ad4bb6e636576fa1959ce4e064b",
                "md5": "7d66b8f39a1d1ac0c950c38f14c476ab",
                "sha256": "2626966acea89c15bcd09f19589e104cda04692ff9dcccf3e97999e17f7b318f"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7d66b8f39a1d1ac0c950c38f14c476ab",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 13929985,
            "upload_time": "2024-02-20T06:43:07",
            "upload_time_iso_8601": "2024-02-20T06:43:07.306479Z",
            "url": "https://files.pythonhosted.org/packages/79/5f/552aef70a6f4fb8306052c96bde655322ad4bb6e636576fa1959ce4e064b/pygame_ce-2.4.1-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40c182f279b2c7de608017d1322b2bb44dff1385f619e95b7a3e3f1c9c5f7175",
                "md5": "caffb64da636b5f0f2e5a17e5dc0060e",
                "sha256": "752103605b9b6485373c234488abb05f50929d915799784a62dd1782ae17e489"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "caffb64da636b5f0f2e5a17e5dc0060e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 13591396,
            "upload_time": "2024-02-20T06:43:09",
            "upload_time_iso_8601": "2024-02-20T06:43:09.977857Z",
            "url": "https://files.pythonhosted.org/packages/40/c1/82f279b2c7de608017d1322b2bb44dff1385f619e95b7a3e3f1c9c5f7175/pygame_ce-2.4.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7423875a359824e204df73c58e3f2f6ded2d7b78a2f1bc6d92c61feee256857b",
                "md5": "3ba5952a26501ad874388f3982b0511f",
                "sha256": "a67cde0186b415fe2d5815f1d2d4afd7bed261465eaba00f075e5f549b975761"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3ba5952a26501ad874388f3982b0511f",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 12153346,
            "upload_time": "2024-02-20T06:43:12",
            "upload_time_iso_8601": "2024-02-20T06:43:12.358237Z",
            "url": "https://files.pythonhosted.org/packages/74/23/875a359824e204df73c58e3f2f6ded2d7b78a2f1bc6d92c61feee256857b/pygame_ce-2.4.1-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d69406dbf350b013b447cbd019e015dd6bb4a94076eb095b14596867224ce60c",
                "md5": "9d56fc54826f6641fcaabce55ebc1ad4",
                "sha256": "9d304812feaad6345ddcf0c86f448a97e6dc6337e45b7d55b1a3308f55d728e7"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp38-pypy38_pp73-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9d56fc54826f6641fcaabce55ebc1ad4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 15869318,
            "upload_time": "2024-02-20T06:43:14",
            "upload_time_iso_8601": "2024-02-20T06:43:14.675466Z",
            "url": "https://files.pythonhosted.org/packages/d6/94/06dbf350b013b447cbd019e015dd6bb4a94076eb095b14596867224ce60c/pygame_ce-2.4.1-pp38-pypy38_pp73-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5832ed54f2e7b1b054a74a923ced502807a830aad1eeb8fc971bcf0b2d10f527",
                "md5": "e069f4b7f77359c4d6edd119766d7e24",
                "sha256": "7e8acddf0c42163ec6fa3e24d65c179ca840bc304b826882ec17849ced49e649"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e069f4b7f77359c4d6edd119766d7e24",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 13438878,
            "upload_time": "2024-02-20T07:12:11",
            "upload_time_iso_8601": "2024-02-20T07:12:11.811475Z",
            "url": "https://files.pythonhosted.org/packages/58/32/ed54f2e7b1b054a74a923ced502807a830aad1eeb8fc971bcf0b2d10f527/pygame_ce-2.4.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe934bc8fcb206b458f70e6bb5c0c3443145188fecf3b73d0d726d8ec7ab21dc",
                "md5": "84da03d382f5f53668d11cc6122880dd",
                "sha256": "28d5d812344e9151d05b4cf2714cc04d6fcb28cf8fe4c682c207c7483634a428"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "84da03d382f5f53668d11cc6122880dd",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 13930500,
            "upload_time": "2024-02-20T06:43:17",
            "upload_time_iso_8601": "2024-02-20T06:43:17.607464Z",
            "url": "https://files.pythonhosted.org/packages/fe/93/4bc8fcb206b458f70e6bb5c0c3443145188fecf3b73d0d726d8ec7ab21dc/pygame_ce-2.4.1-pp38-pypy38_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57afacd38954e20a84b83b16769885b0de7e458edcc20887fbe6d4953c33eced",
                "md5": "7d3b3ca6ac1b20add2c324ea8df0d5a7",
                "sha256": "c5402524398219a88c73eab0584e880e8c1e029ecbdb4e94bc2bde566b6ec69e"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7d3b3ca6ac1b20add2c324ea8df0d5a7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 13591615,
            "upload_time": "2024-02-20T06:43:19",
            "upload_time_iso_8601": "2024-02-20T06:43:19.871856Z",
            "url": "https://files.pythonhosted.org/packages/57/af/acd38954e20a84b83b16769885b0de7e458edcc20887fbe6d4953c33eced/pygame_ce-2.4.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0c1335cb9a43cbeb29415cebcd37f53d62701aae25f1f5c53b743d53d791bbb",
                "md5": "65a71a4d18b243c07cdb800965bb6256",
                "sha256": "3897ae41dd59a59c4d690c81c53c076a3ea022176684d1869fb46ba98b06ebb2"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "65a71a4d18b243c07cdb800965bb6256",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.8",
            "size": 12151103,
            "upload_time": "2024-02-20T06:43:22",
            "upload_time_iso_8601": "2024-02-20T06:43:22.314923Z",
            "url": "https://files.pythonhosted.org/packages/d0/c1/335cb9a43cbeb29415cebcd37f53d62701aae25f1f5c53b743d53d791bbb/pygame_ce-2.4.1-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "47c966643d28a0ca9053f4eb173cad1ee60422e0bc8de47605e09b80a71fb22e",
                "md5": "be6542a226183ed73bcce6e81e1bb825",
                "sha256": "2beedd02a1a6b25bf7a145def1164e160001ef34556edfec9968bbcb8ad05cc3"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp39-pypy39_pp73-macosx_10_11_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be6542a226183ed73bcce6e81e1bb825",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 15874218,
            "upload_time": "2024-02-20T06:43:25",
            "upload_time_iso_8601": "2024-02-20T06:43:25.214035Z",
            "url": "https://files.pythonhosted.org/packages/47/c9/66643d28a0ca9053f4eb173cad1ee60422e0bc8de47605e09b80a71fb22e/pygame_ce-2.4.1-pp39-pypy39_pp73-macosx_10_11_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9be6b54f906f7667d5a8e60c804c79de7dc4bef26d2663f01039cc9a7c89d04b",
                "md5": "75ce456703f430c07e70d546f4adf19d",
                "sha256": "32c7d1bc60d9375188f6586b0e30a66db07443739f1c119e7cc2bc7c8ad898f4"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "75ce456703f430c07e70d546f4adf19d",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 13436140,
            "upload_time": "2024-02-20T07:12:20",
            "upload_time_iso_8601": "2024-02-20T07:12:20.170386Z",
            "url": "https://files.pythonhosted.org/packages/9b/e6/b54f906f7667d5a8e60c804c79de7dc4bef26d2663f01039cc9a7c89d04b/pygame_ce-2.4.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d353d7396ef46c2cfec1a12b942244c9cf089f26efab593d006f86aab59209a8",
                "md5": "f844a4100f7a22054d8a7cc079ae22a7",
                "sha256": "1598a8e43e39b775066265696bf8e7e55b3e5205670f167295702ee661547db2"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "f844a4100f7a22054d8a7cc079ae22a7",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 13929617,
            "upload_time": "2024-02-20T06:43:27",
            "upload_time_iso_8601": "2024-02-20T06:43:27.470653Z",
            "url": "https://files.pythonhosted.org/packages/d3/53/d7396ef46c2cfec1a12b942244c9cf089f26efab593d006f86aab59209a8/pygame_ce-2.4.1-pp39-pypy39_pp73-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "580b56b7b71e0eb5a0b957331d375c0940a0e46eb7089d05c133df3a5e5d8eea",
                "md5": "4dc321aaf2b9479c4c1b9dda7c8d508a",
                "sha256": "875c359b278b44905e7bde3bd9507ed0aa66e85efc7fce4df3e671b20af079b3"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4dc321aaf2b9479c4c1b9dda7c8d508a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 13590605,
            "upload_time": "2024-02-20T06:43:29",
            "upload_time_iso_8601": "2024-02-20T06:43:29.971991Z",
            "url": "https://files.pythonhosted.org/packages/58/0b/56b7b71e0eb5a0b957331d375c0940a0e46eb7089d05c133df3a5e5d8eea/pygame_ce-2.4.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b291341cbefda354f5e9cc3b78e512bafc9edac6275ef9c032c04c6c65ff1af0",
                "md5": "21eb687d412629d12b23a6471325ed16",
                "sha256": "e67e3a749c581d198f3e512d8750671749e233cd8712d386086de04cebf556e3"
            },
            "downloads": -1,
            "filename": "pygame_ce-2.4.1-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "21eb687d412629d12b23a6471325ed16",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.8",
            "size": 12153651,
            "upload_time": "2024-02-20T06:43:32",
            "upload_time_iso_8601": "2024-02-20T06:43:32.654196Z",
            "url": "https://files.pythonhosted.org/packages/b2/91/341cbefda354f5e9cc3b78e512bafc9edac6275ef9c032c04c6c65ff1af0/pygame_ce-2.4.1-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dcb164fffc2c8664497ae82b2afb4f5efe0130d38b39f2d25af0288c4261df3e",
                "md5": "d032ff4f30d736960035a96f728715f2",
                "sha256": "70a84aa1417c633a0fd6754ffa5dc92ee1b9aeb70baaa52c8c8c94a7c6db9cf0"
            },
            "downloads": -1,
            "filename": "pygame-ce-2.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d032ff4f30d736960035a96f728715f2",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 14196840,
            "upload_time": "2024-02-20T06:43:35",
            "upload_time_iso_8601": "2024-02-20T06:43:35.527188Z",
            "url": "https://files.pythonhosted.org/packages/dc/b1/64fffc2c8664497ae82b2afb4f5efe0130d38b39f2d25af0288c4261df3e/pygame-ce-2.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-20 06:43:35",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "pygame-community",
    "github_project": "pygame-ce",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "circle": true,
    "lcname": "pygame-ce"
}
        
Elapsed time: 0.27720s