gevent


Namegevent JSON
Version 24.2.1 PyPI version JSON
download
home_pagehttp://www.gevent.org/
SummaryCoroutine-based network library
upload_time2024-02-14 11:31:10
maintainerJason Madden
docs_urlNone
authorDenis Bilenko
requires_python>=3.8
licenseMIT
keywords greenlet coroutine cooperative multitasking light threads monkey
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ========
 gevent
========

.. image:: https://github.com/gevent/gevent/workflows/gevent%20testing/badge.svg
   :target: https://github.com/gevent/gevent/actions

.. image:: https://ci.appveyor.com/api/projects/status/bqxl88yhpho223jg?svg=true
   :target: https://ci.appveyor.com/project/denik/gevent

.. image:: https://coveralls.io/repos/gevent/gevent/badge.svg?branch=master&service=github
   :target: https://coveralls.io/github/gevent/gevent?branch=master

..
  This file is included in README.rst from the top-level
  so it is limited to pure ReST markup, not Sphinx.



gevent is a coroutine_ -based Python_ networking library that uses
`greenlet <https://greenlet.readthedocs.io>`_ to provide a high-level synchronous API on top of the `libev`_
or `libuv`_ event loop.

Features include:


* Fast event loop based on `libev`_ or `libuv`_.
* Lightweight execution units based on greenlets.
* API that re-uses concepts from the Python standard library (for
  examples there are `events`_ and
  `queues`_).
* `Cooperative sockets with SSL support <http://www.gevent.org/api/index.html#networking>`_
* `Cooperative DNS queries <http://www.gevent.org/dns.html>`_ performed through a threadpool,
  dnspython, or c-ares.
* `Monkey patching utility <http://www.gevent.org/intro.html#monkey-patching>`_ to get 3rd party modules to become cooperative
* TCP/UDP/HTTP servers
* Subprocess support (through `gevent.subprocess`_)
* Thread pools

gevent is `inspired by eventlet`_ but features a more consistent API,
simpler implementation and better performance. Read why others `use
gevent`_ and check out the list of the `open source projects based on
gevent`_.

gevent was written by `Denis Bilenko <http://denisbilenko.com/>`_.

Since version 1.1, gevent is maintained by Jason Madden for
`NextThought <https://nextthought.com>`_ (through gevent 21) and
`Institutional Shareholder Services <https://www.issgovernance.com>`_
with help from the `contributors
<https://github.com/gevent/gevent/graphs/contributors>`_ and is
licensed under the MIT license.

See `what's new`_ in the latest major release.

Check out the detailed changelog_ for this version.

.. _events: http://www.gevent.org/api/gevent.event.html#gevent.event.Event
.. _queues: http://www.gevent.org/api/gevent.queue.html#gevent.queue.Queue
.. _gevent.subprocess: http://www.gevent.org/api/gevent.subprocess.html#module-gevent.subprocess

.. _coroutine: https://en.wikipedia.org/wiki/Coroutine
.. _Python: http://python.org
.. _libev: http://software.schmorp.de/pkg/libev.html
.. _libuv: http://libuv.org
.. _inspired by eventlet: http://blog.gevent.org/2010/02/27/why-gevent/
.. _use gevent: http://groups.google.com/group/gevent/browse_thread/thread/4de9703e5dca8271
.. _open source projects based on gevent: https://github.com/gevent/gevent/wiki/Projects
.. _what's new: http://www.gevent.org/whatsnew_1_5.html
.. _changelog: http://www.gevent.org/changelog.html


Read the documentation online at http://www.gevent.org.

Post issues on the `bug tracker`_, discuss and ask open ended
questions on the `mailing list`_, and find announcements and
information on the blog_ and `twitter (@gevent)`_.

===============================
 Installation and Requirements
===============================

.. _installation:

..
  This file is included in README.rst so it is limited to plain
  ReST markup, not Sphinx.

.. note::

   If you are reading this document on the `Python Package Index`_
   (PyPI, https://pypi.org/), it is specific to the version of gevent that
   you are viewing. If you are viewing this document on gevent.org, it
   refers to the current state of gevent in source control (git
   master).

Supported Platforms
===================

This version of gevent runs on Python 3.8 and up, (for exact details
of tested versions, see the classifiers on the PyPI page or in
``setup.py``). gevent requires the `greenlet
<https://greenlet.readthedocs.io>`_ library and will install the
`cffi`_ library by default on Windows. The cffi library will become
the default on all platforms in a future release of gevent.

This version of gevent is also tested on on PyPy 3.10 (7.3.12); it
should run on PyPy 3.9 and above. On PyPy, there are no external
dependencies.

gevent is tested on Windows, macOS, and Linux, and should run on most
other Unix-like operating systems (e.g., FreeBSD, Solaris, etc.)

.. note::

   Windows is supported as a tier 2, "best effort," platform. It is
   suitable for development, but not recommended for production. In
   particular, PyPy3 on Windows may have issues, especially with
   subprocesses.

   On Windows using the deprecated libev backend, gevent is
   limited to a maximum of 1024 open sockets due to
   `limitations in libev`_. This limitation should not exist
   with the default libuv backend.

Older Versions of Python
------------------------

Users of older versions of Python 2 or Python 3 may install an older
version of gevent. Note that these versions are generally not
supported.

+-------+-------+
|Python |Gevent |
|Version|Version|
+=======+=======+
|2.5    |1.0.x  |
|       |       |
+-------+-------+
|2.6    |1.1.x  |
+-------+-------+
|<=     |1.2.x  |
|2.7.8  |       |
+-------+-------+
|3.3    |1.2.x  |
+-------+-------+
|3.4.0 -| 1.3.x |
|3.4.2  |       |
|       |       |
+-------+-------+
|3.4.3  | 1.4.x |
|       |       |
|       |       |
+-------+-------+
|3.5.x  | 20.9.0|
|       |       |
|       |       |
+-------+-------+
|2.7.9 -|       |
|2.7.18,| 22.10 |
|3.6,   |       |
|3.7    |       |
|       |       |
+-------+-------+

Installation
============

.. note::

   This section is about installing released versions of gevent as
   distributed on the `Python Package Index`_. For building gevent
   from source, including customizing the build and embedded
   libraries, see `Installing From Source`_.

.. _Python Package Index: http://pypi.org/project/gevent

gevent and greenlet can both be installed with `pip`_, e.g., ``pip
install gevent``. Installation using `buildout
<http://docs.buildout.org/en/latest/>`_ is also supported.

On Windows, macOS, and Linux, both gevent and greenlet are
distributed as binary `wheels`_.

.. tip::

   You need Pip 8.0 or later, or buildout 2.10.0 to install the binary
   wheels on Windows or macOS. On Linux, you'll need `pip 19
   <https://github.com/pypa/pip/pull/5008>`_ to install the
   manylinux2010 wheels.

.. tip::

   While the x86-64 binaries are considered production quality, they
   are built with relatively low optimization levels and no hardware
   specific optimizations. Serious production users are encouraged to
   install from source with appropriate compiler flags.

.. tip::

   Beginning with gevent 20.12.0, 64-bit ARM binaries are distributed
   on PyPI for aarch64 manylinux2014 compatible systems. Installing these
   needs a very recent version of ``pip``. These wheels *do not*
   contain the c-ares resolver, are not tested, and are built with
   very low levels of optimizations. Serious production users of
   gevent on 64-bit ARM systems are encouraged to build their own
   binary wheels.

   Beginning with gevent 22.10.0, ppc64le binaries are distributed on
   PyPI. The same caveats apply as for 64-bit ARM binaries. Using them
   for anything other than local development is discouraged.

   Beginning with gevent 23, muslinux aarch64 and S390X binaries
   are distributed on PyPI. The same caveats apply as for 64-bit ARM
   binaries. Using them for anything other than local development is
   discouraged.


Installing From Source
----------------------

If you are unable to use the binary wheels (for platforms where no
pre-built wheels are available or if wheel installation is disabled),
you can build gevent from source. A normal ``pip install`` will
fall back to doing this if no binary wheel is available. See
`Installing From Source`_ for more, including common installation issues.

Extra Dependencies
==================

There are a number
of additional libraries that extend gevent's functionality and will be
used if they are available. All of these may be installed using
`setuptools extras
<https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies>`_,
as named below, e.g., ``pip install gevent[events]``.

events
    In versions of gevent up to and including 20.5.0, this provided configurable
    event support using `zope.event
    <https://pypi.org/project/zope.event>`_ and was highly
    recommended.

    In versions after that, this extra is empty and does nothing. It
    will be removed in gevent 21.0.

dnspython
    Enables a pure-Python resolver, backed by `dnspython
    <https://pypi.org/project/dnspython>`_. On Python 2, this also
    includes `idna <https://pypi.org/project/idna>`_. They can be
    installed with the ``dnspython`` extra.

    .. note:: This is not compatible with Python 3.10+ or dnspython 2.

monitor
    Enhancements to gevent's self-monitoring capabilities. This
    includes the `psutil <https://pypi.org/project/psutil>`_ library
    which is needed to monitor memory usage. (Note that this may not
    build on all platforms.)

recommended
    A shortcut for installing suggested extras together. This includes
    the non-test extras defined here, plus additions that improve
    gevent's operation on certain platforms (for example, in the past,
    it has included backports of newer APIs).

test
    Everything needed to run the complete gevent test suite.


.. _`pip`: https://pip.pypa.io/en/stable/installing/
.. _`wheels`: http://pythonwheels.com
.. _`gevent 1.5`: whatsnew_1_5.html
.. _`Installing From Source`: https://www.gevent.org/development/installing_from_source.html

.. _`cffi`: https://cffi.readthedocs.io
.. _`limitations in libev`: http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#WIN32_PLATFORM_LIMITATIONS_AND_WORKA


.. _bug tracker: https://github.com/gevent/gevent/issues
.. _mailing list: http://groups.google.com/group/gevent
.. _blog: https://dev.nextthought.com/blog/categories/gevent.html
.. _twitter (@gevent): http://twitter.com/gevent

            

Raw data

            {
    "_id": null,
    "home_page": "http://www.gevent.org/",
    "name": "gevent",
    "maintainer": "Jason Madden",
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "jason@nextthought.com",
    "keywords": "greenlet coroutine cooperative multitasking light threads monkey",
    "author": "Denis Bilenko",
    "author_email": "denis.bilenko@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/27/24/a3a7b713acfcf1177207f49ec25c665123f8972f42bee641bcc9f32961f4/gevent-24.2.1.tar.gz",
    "platform": null,
    "description": "========\n gevent\n========\n\n.. image:: https://github.com/gevent/gevent/workflows/gevent%20testing/badge.svg\n   :target: https://github.com/gevent/gevent/actions\n\n.. image:: https://ci.appveyor.com/api/projects/status/bqxl88yhpho223jg?svg=true\n   :target: https://ci.appveyor.com/project/denik/gevent\n\n.. image:: https://coveralls.io/repos/gevent/gevent/badge.svg?branch=master&service=github\n   :target: https://coveralls.io/github/gevent/gevent?branch=master\n\n..\n  This file is included in README.rst from the top-level\n  so it is limited to pure ReST markup, not Sphinx.\n\n\n\ngevent is a coroutine_ -based Python_ networking library that uses\n`greenlet <https://greenlet.readthedocs.io>`_ to provide a high-level synchronous API on top of the `libev`_\nor `libuv`_ event loop.\n\nFeatures include:\n\n\n* Fast event loop based on `libev`_ or `libuv`_.\n* Lightweight execution units based on greenlets.\n* API that re-uses concepts from the Python standard library (for\n  examples there are `events`_ and\n  `queues`_).\n* `Cooperative sockets with SSL support <http://www.gevent.org/api/index.html#networking>`_\n* `Cooperative DNS queries <http://www.gevent.org/dns.html>`_ performed through a threadpool,\n  dnspython, or c-ares.\n* `Monkey patching utility <http://www.gevent.org/intro.html#monkey-patching>`_ to get 3rd party modules to become cooperative\n* TCP/UDP/HTTP servers\n* Subprocess support (through `gevent.subprocess`_)\n* Thread pools\n\ngevent is `inspired by eventlet`_ but features a more consistent API,\nsimpler implementation and better performance. Read why others `use\ngevent`_ and check out the list of the `open source projects based on\ngevent`_.\n\ngevent was written by `Denis Bilenko <http://denisbilenko.com/>`_.\n\nSince version 1.1, gevent is maintained by Jason Madden for\n`NextThought <https://nextthought.com>`_ (through gevent 21) and\n`Institutional Shareholder Services <https://www.issgovernance.com>`_\nwith help from the `contributors\n<https://github.com/gevent/gevent/graphs/contributors>`_ and is\nlicensed under the MIT license.\n\nSee `what's new`_ in the latest major release.\n\nCheck out the detailed changelog_ for this version.\n\n.. _events: http://www.gevent.org/api/gevent.event.html#gevent.event.Event\n.. _queues: http://www.gevent.org/api/gevent.queue.html#gevent.queue.Queue\n.. _gevent.subprocess: http://www.gevent.org/api/gevent.subprocess.html#module-gevent.subprocess\n\n.. _coroutine: https://en.wikipedia.org/wiki/Coroutine\n.. _Python: http://python.org\n.. _libev: http://software.schmorp.de/pkg/libev.html\n.. _libuv: http://libuv.org\n.. _inspired by eventlet: http://blog.gevent.org/2010/02/27/why-gevent/\n.. _use gevent: http://groups.google.com/group/gevent/browse_thread/thread/4de9703e5dca8271\n.. _open source projects based on gevent: https://github.com/gevent/gevent/wiki/Projects\n.. _what's new: http://www.gevent.org/whatsnew_1_5.html\n.. _changelog: http://www.gevent.org/changelog.html\n\n\nRead the documentation online at http://www.gevent.org.\n\nPost issues on the `bug tracker`_, discuss and ask open ended\nquestions on the `mailing list`_, and find announcements and\ninformation on the blog_ and `twitter (@gevent)`_.\n\n===============================\n Installation and Requirements\n===============================\n\n.. _installation:\n\n..\n  This file is included in README.rst so it is limited to plain\n  ReST markup, not Sphinx.\n\n.. note::\n\n   If you are reading this document on the `Python Package Index`_\n   (PyPI, https://pypi.org/), it is specific to the version of gevent that\n   you are viewing. If you are viewing this document on gevent.org, it\n   refers to the current state of gevent in source control (git\n   master).\n\nSupported Platforms\n===================\n\nThis version of gevent runs on Python 3.8 and up, (for exact details\nof tested versions, see the classifiers on the PyPI page or in\n``setup.py``). gevent requires the `greenlet\n<https://greenlet.readthedocs.io>`_ library and will install the\n`cffi`_ library by default on Windows. The cffi library will become\nthe default on all platforms in a future release of gevent.\n\nThis version of gevent is also tested on on PyPy 3.10 (7.3.12); it\nshould run on PyPy 3.9 and above. On PyPy, there are no external\ndependencies.\n\ngevent is tested on Windows, macOS, and Linux, and should run on most\nother Unix-like operating systems (e.g., FreeBSD, Solaris, etc.)\n\n.. note::\n\n   Windows is supported as a tier 2, \"best effort,\" platform. It is\n   suitable for development, but not recommended for production. In\n   particular, PyPy3 on Windows may have issues, especially with\n   subprocesses.\n\n   On Windows using the deprecated libev backend, gevent is\n   limited to a maximum of 1024 open sockets due to\n   `limitations in libev`_. This limitation should not exist\n   with the default libuv backend.\n\nOlder Versions of Python\n------------------------\n\nUsers of older versions of Python 2 or Python 3 may install an older\nversion of gevent. Note that these versions are generally not\nsupported.\n\n+-------+-------+\n|Python |Gevent |\n|Version|Version|\n+=======+=======+\n|2.5    |1.0.x  |\n|       |       |\n+-------+-------+\n|2.6    |1.1.x  |\n+-------+-------+\n|<=     |1.2.x  |\n|2.7.8  |       |\n+-------+-------+\n|3.3    |1.2.x  |\n+-------+-------+\n|3.4.0 -| 1.3.x |\n|3.4.2  |       |\n|       |       |\n+-------+-------+\n|3.4.3  | 1.4.x |\n|       |       |\n|       |       |\n+-------+-------+\n|3.5.x  | 20.9.0|\n|       |       |\n|       |       |\n+-------+-------+\n|2.7.9 -|       |\n|2.7.18,| 22.10 |\n|3.6,   |       |\n|3.7    |       |\n|       |       |\n+-------+-------+\n\nInstallation\n============\n\n.. note::\n\n   This section is about installing released versions of gevent as\n   distributed on the `Python Package Index`_. For building gevent\n   from source, including customizing the build and embedded\n   libraries, see `Installing From Source`_.\n\n.. _Python Package Index: http://pypi.org/project/gevent\n\ngevent and greenlet can both be installed with `pip`_, e.g., ``pip\ninstall gevent``. Installation using `buildout\n<http://docs.buildout.org/en/latest/>`_ is also supported.\n\nOn Windows, macOS, and Linux, both gevent and greenlet are\ndistributed as binary `wheels`_.\n\n.. tip::\n\n   You need Pip 8.0 or later, or buildout 2.10.0 to install the binary\n   wheels on Windows or macOS. On Linux, you'll need `pip 19\n   <https://github.com/pypa/pip/pull/5008>`_ to install the\n   manylinux2010 wheels.\n\n.. tip::\n\n   While the x86-64 binaries are considered production quality, they\n   are built with relatively low optimization levels and no hardware\n   specific optimizations. Serious production users are encouraged to\n   install from source with appropriate compiler flags.\n\n.. tip::\n\n   Beginning with gevent 20.12.0, 64-bit ARM binaries are distributed\n   on PyPI for aarch64 manylinux2014 compatible systems. Installing these\n   needs a very recent version of ``pip``. These wheels *do not*\n   contain the c-ares resolver, are not tested, and are built with\n   very low levels of optimizations. Serious production users of\n   gevent on 64-bit ARM systems are encouraged to build their own\n   binary wheels.\n\n   Beginning with gevent 22.10.0, ppc64le binaries are distributed on\n   PyPI. The same caveats apply as for 64-bit ARM binaries. Using them\n   for anything other than local development is discouraged.\n\n   Beginning with gevent 23, muslinux aarch64 and S390X binaries\n   are distributed on PyPI. The same caveats apply as for 64-bit ARM\n   binaries. Using them for anything other than local development is\n   discouraged.\n\n\nInstalling From Source\n----------------------\n\nIf you are unable to use the binary wheels (for platforms where no\npre-built wheels are available or if wheel installation is disabled),\nyou can build gevent from source. A normal ``pip install`` will\nfall back to doing this if no binary wheel is available. See\n`Installing From Source`_ for more, including common installation issues.\n\nExtra Dependencies\n==================\n\nThere are a number\nof additional libraries that extend gevent's functionality and will be\nused if they are available. All of these may be installed using\n`setuptools extras\n<https://setuptools.readthedocs.io/en/latest/setuptools.html#declaring-extras-optional-features-with-their-own-dependencies>`_,\nas named below, e.g., ``pip install gevent[events]``.\n\nevents\n    In versions of gevent up to and including 20.5.0, this provided configurable\n    event support using `zope.event\n    <https://pypi.org/project/zope.event>`_ and was highly\n    recommended.\n\n    In versions after that, this extra is empty and does nothing. It\n    will be removed in gevent 21.0.\n\ndnspython\n    Enables a pure-Python resolver, backed by `dnspython\n    <https://pypi.org/project/dnspython>`_. On Python 2, this also\n    includes `idna <https://pypi.org/project/idna>`_. They can be\n    installed with the ``dnspython`` extra.\n\n    .. note:: This is not compatible with Python 3.10+ or dnspython 2.\n\nmonitor\n    Enhancements to gevent's self-monitoring capabilities. This\n    includes the `psutil <https://pypi.org/project/psutil>`_ library\n    which is needed to monitor memory usage. (Note that this may not\n    build on all platforms.)\n\nrecommended\n    A shortcut for installing suggested extras together. This includes\n    the non-test extras defined here, plus additions that improve\n    gevent's operation on certain platforms (for example, in the past,\n    it has included backports of newer APIs).\n\ntest\n    Everything needed to run the complete gevent test suite.\n\n\n.. _`pip`: https://pip.pypa.io/en/stable/installing/\n.. _`wheels`: http://pythonwheels.com\n.. _`gevent 1.5`: whatsnew_1_5.html\n.. _`Installing From Source`: https://www.gevent.org/development/installing_from_source.html\n\n.. _`cffi`: https://cffi.readthedocs.io\n.. _`limitations in libev`: http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#WIN32_PLATFORM_LIMITATIONS_AND_WORKA\n\n\n.. _bug tracker: https://github.com/gevent/gevent/issues\n.. _mailing list: http://groups.google.com/group/gevent\n.. _blog: https://dev.nextthought.com/blog/categories/gevent.html\n.. _twitter (@gevent): http://twitter.com/gevent\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Coroutine-based network library",
    "version": "24.2.1",
    "project_urls": {
        "Bug Tracker": "https://github.com/gevent/gevent/issues",
        "Documentation": "http://www.gevent.org",
        "Homepage": "http://www.gevent.org/",
        "Source Code": "https://github.com/gevent/gevent/"
    },
    "split_keywords": [
        "greenlet",
        "coroutine",
        "cooperative",
        "multitasking",
        "light",
        "threads",
        "monkey"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "159ee775a6b261bd871f37a2aae4c335d150f2c64c54c166e8dd8cf63210b445",
                "md5": "2a045e7ba18884c627fccb2087a716ee",
                "sha256": "6f947a9abc1a129858391b3d9334c45041c08a0f23d14333d5b844b6e5c17a07"
            },
            "downloads": -1,
            "filename": "gevent-24.2.1-cp310-cp310-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "2a045e7ba18884c627fccb2087a716ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.8",
            "size": 3010257,
            "upload_time": "2024-02-14T11:25:09",
            "upload_time_iso_8601": "2024-02-14T11:25:09.387775Z",
            "url": "https://files.pythonhosted.org/packages/15/9e/e775a6b261bd871f37a2aae4c335d150f2c64c54c166e8dd8cf63210b445/gevent-24.2.1-cp310-cp310-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6434e561fb53ec80e81a83b76667c004c838a292dde8adf80ff289558b4a4df8",
                "md5": "e9d03adc21b02da35eb6a0c2dd2b6d48",
                "sha256": "03aa5879acd6b7076f6a2a307410fb1e0d288b84b03cdfd8c74db8b4bc882fc5"
            },
            "downloads": -1,
            "filename": "gevent-24.2.1-cp311-cp311-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "e9d03adc21b02da35eb6a0c2dd2b6d48",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 3017855,
            "upload_time": "2024-02-14T11:26:23",
            "upload_time_iso_8601": "2024-02-14T11:26:23.685771Z",
            "url": "https://files.pythonhosted.org/packages/64/34/e561fb53ec80e81a83b76667c004c838a292dde8adf80ff289558b4a4df8/gevent-24.2.1-cp311-cp311-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18b1bbaf6047b13c4b83cd81007298f4f8ddffd8674c130736423e79e7bb8b6a",
                "md5": "809df9b21148865e62767ca8d841dd46",
                "sha256": "1dffb395e500613e0452b9503153f8f7ba587c67dd4a85fc7cd7aa7430cb02cc"
            },
            "downloads": -1,
            "filename": "gevent-24.2.1-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "809df9b21148865e62767ca8d841dd46",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.8",
            "size": 1525019,
            "upload_time": "2024-02-14T11:39:23",
            "upload_time_iso_8601": "2024-02-14T11:39:23.072131Z",
            "url": "https://files.pythonhosted.org/packages/18/b1/bbaf6047b13c4b83cd81007298f4f8ddffd8674c130736423e79e7bb8b6a/gevent-24.2.1-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5072eb98be1cec2a3d0f46d3af49b034deb48a6d6d9a1958ee110bc2e1e600ac",
                "md5": "c1369cb1c87b97f7a6bb52328b7bada1",
                "sha256": "6c47ae7d1174617b3509f5d884935e788f325eb8f1a7efc95d295c68d83cce40"
            },
            "downloads": -1,
            "filename": "gevent-24.2.1-cp312-cp312-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "c1369cb1c87b97f7a6bb52328b7bada1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 3007004,
            "upload_time": "2024-02-14T11:28:20",
            "upload_time_iso_8601": "2024-02-14T11:28:20.476707Z",
            "url": "https://files.pythonhosted.org/packages/50/72/eb98be1cec2a3d0f46d3af49b034deb48a6d6d9a1958ee110bc2e1e600ac/gevent-24.2.1-cp312-cp312-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e90d9fcdc22864d0cf471630071c264289b9a803892d6f55e895a69c2e3574b",
                "md5": "79d778b34da629f2a39d96aeaf7c0d02",
                "sha256": "94138682e68ec197db42ad7442d3cf9b328069c3ad8e4e5022e6b5cd3e7ffae5"
            },
            "downloads": -1,
            "filename": "gevent-24.2.1-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "79d778b34da629f2a39d96aeaf7c0d02",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.8",
            "size": 1523715,
            "upload_time": "2024-02-14T11:31:09",
            "upload_time_iso_8601": "2024-02-14T11:31:09.195510Z",
            "url": "https://files.pythonhosted.org/packages/2e/90/d9fcdc22864d0cf471630071c264289b9a803892d6f55e895a69c2e3574b/gevent-24.2.1-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "075aa0b6c4cdd0917137c587edaba76b6c679181e10d25405247d2f5d8a2751d",
                "md5": "6c5324fc27bed9fdd20b81620621f242",
                "sha256": "8f4b8e777d39013595a7740b4463e61b1cfe5f462f1b609b28fbc1e4c4ff01e5"
            },
            "downloads": -1,
            "filename": "gevent-24.2.1-cp38-cp38-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "6c5324fc27bed9fdd20b81620621f242",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.8",
            "size": 3018252,
            "upload_time": "2024-02-14T11:28:55",
            "upload_time_iso_8601": "2024-02-14T11:28:55.012835Z",
            "url": "https://files.pythonhosted.org/packages/07/5a/a0b6c4cdd0917137c587edaba76b6c679181e10d25405247d2f5d8a2751d/gevent-24.2.1-cp38-cp38-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7823328809bc89c21669434fddaa863c33008486a423eb7ea049b2bf82ae154b",
                "md5": "4be5168ee71d6f9a965ba34183b5593b",
                "sha256": "2ae3a25ecce0a5b0cd0808ab716bfca180230112bb4bc89b46ae0061d62d4afe"
            },
            "downloads": -1,
            "filename": "gevent-24.2.1-cp39-cp39-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "4be5168ee71d6f9a965ba34183b5593b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.8",
            "size": 3027171,
            "upload_time": "2024-02-14T11:29:07",
            "upload_time_iso_8601": "2024-02-14T11:29:07.712899Z",
            "url": "https://files.pythonhosted.org/packages/78/23/328809bc89c21669434fddaa863c33008486a423eb7ea049b2bf82ae154b/gevent-24.2.1-cp39-cp39-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ae15c1cd1f2005f457028ecde345260fc4ab2197c6b660a8f3729784a6a903ca",
                "md5": "2ee5d10b6088a5e277f94bae72898208",
                "sha256": "7b00f8c9065de3ad226f7979154a7b27f3b9151c8055c162332369262fc025d8"
            },
            "downloads": -1,
            "filename": "gevent-24.2.1-pp310-pypy310_pp73-macosx_11_0_universal2.whl",
            "has_sig": false,
            "md5_digest": "2ee5d10b6088a5e277f94bae72898208",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.8",
            "size": 1234686,
            "upload_time": "2024-02-14T11:37:44",
            "upload_time_iso_8601": "2024-02-14T11:37:44.148859Z",
            "url": "https://files.pythonhosted.org/packages/ae/15/c1cd1f2005f457028ecde345260fc4ab2197c6b660a8f3729784a6a903ca/gevent-24.2.1-pp310-pypy310_pp73-macosx_11_0_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2724a3a7b713acfcf1177207f49ec25c665123f8972f42bee641bcc9f32961f4",
                "md5": "d8e855f9d641bb232afdf7c7cafbfda4",
                "sha256": "432fc76f680acf7cf188c2ee0f5d3ab73b63c1f03114c7cd8a34cebbe5aa2056"
            },
            "downloads": -1,
            "filename": "gevent-24.2.1.tar.gz",
            "has_sig": false,
            "md5_digest": "d8e855f9d641bb232afdf7c7cafbfda4",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 6147507,
            "upload_time": "2024-02-14T11:31:10",
            "upload_time_iso_8601": "2024-02-14T11:31:10.128233Z",
            "url": "https://files.pythonhosted.org/packages/27/24/a3a7b713acfcf1177207f49ec25c665123f8972f42bee641bcc9f32961f4/gevent-24.2.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-14 11:31:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gevent",
    "github_project": "gevent",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": true,
    "landscape": true,
    "appveyor": true,
    "tox": true,
    "lcname": "gevent"
}
        
Elapsed time: 0.19159s