asynq


Nameasynq JSON
Version 1.5.0 PyPI version JSON
download
home_pagehttps://github.com/quora/asynq
SummaryQuora's asynq library
upload_time2023-05-26 04:20:14
maintainer
docs_urlNone
authorQuora, Inc.
requires_python
licenseApache Software License
keywords quora asynq common utility
VCS
bugtrack_url
requirements pytest Cython qcore pygments black mypy
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: http://i.imgur.com/jCPNyOa.png

``asynq`` is a library for asynchronous programming in Python with a focus on batching requests to
external services. It also provides seamless interoperability with synchronous code, support for
asynchronous context managers, and tools to make writing and testing asynchronous code easier.
``asynq`` was developed at Quora and is a core component of Quora's architecture. See the original blog
post `here <https://www.quora.com/q/quoraengineering/Asynchronous-Programming-in-Python>`_.

The most important use case for ``asynq`` is batching. For many storage services (e.g., memcache,
redis) it is far faster to make a single request that fetches many keys at once than to make
many requests that each fetch a single key. The ``asynq`` framework makes it easy to write code
that takes advantage of batching without radical changes in code structure from code that does not
use batching.

For example, synchronous code to retrieve the names of the authors of a list of Quora answers may
look like this:

.. code-block:: python

    def all_author_names(aids):
        uids = [author_of_answer(aid) for aid in aids]
        names = [name_of_user(uid) for uid in uids]
        return names

Here, each call to ``author_of_answer`` and ``name_of_user`` would result in a memcache request.
Converted to use ``asynq``, this code would look like:

.. code-block:: python

    @asynq()
    def all_author_names(aids):
        uids = yield [author_of_answer.asynq(aid) for aid in aids]
        names = yield [name_of_user.asynq(uid) for uid in uids]
        return names

All ``author_of_answer`` calls will be combined into a single memcache request, as will all of the
``name_of_user`` calls.

Futures
-------

Futures are the basic building blocks of ``asynq``'s programming model. The scheduler keeps track
of futures and attempts to schedule them in an efficient way. ``asynq`` uses its own hierarchy of
Future classes, rooted in ``asynq.FutureBase``. Futures have a ``.value()`` method that computes
their value if necessary and then returns it.

The following are the most important Future classes used in ``asynq``:

- ``AsyncTask``, a Future representing the execution of an asynchronous function (see below).
  Normally created by calling ``.asynq()`` on an asynchronous function.
- ``ConstFuture``, a Future whose value is known at creation time. This is useful when you need
  to pass a Future somewhere, but no computation is actually needed.
- ``BatchBase`` and ``BatchItemBase``, the building blocks for doing batching. See below for
  details.


Decorators and asynchronous functions
-------------------------------------

``asynq``'s asynchronous functions are implemented as Python generator functions. Every time an
asynchronous functions yields one or more Futures, it cedes control the asynq scheduler, which will
resolve the futures that were yielded and continue running the function after the futures have been
computed.

The framework requires usage of the ``@asynq()`` decorator on all asynchronous functions. This
decorator wraps the generator function so that it can be called like a normal, synchronous function.
It also creates a ``.asynq`` attribute on the function that allows calling the function
asynchronously. Calling this attribute will return an ``AsyncTask`` object corresponding to the
function.

You can call an asynchronous function synchronously like this:

.. code-block:: python

    result = async_fn(a, b)

and asynchronously like this:

.. code-block:: python

    result = yield async_fn.asynq(a, b)

Calling ``async_fn.asynq(a, b).value()`` has the same result as ``async_fn(a, b)``.

The decorator has a ``pure=True`` option that disables the ``.asynq`` attribute and instead makes
the function itself asynchronous, so that calling it returns an ``AsyncTask``. We recommend to use
this option only in special cases like decorators for asynchronous functions.

``asynq`` also provides an ``@async_proxy()`` decorator for functions that return a Future
directly. Functions decorated with ``@async_proxy()`` look like ``@asynq()`` functions externally.
An example use case is a function that takes either an asynchronous or a synchronous function,
and calls it accordingly:

.. code-block:: python

    @async_proxy()
    def async_call(fn, *args, **kwargs):
        if is_async_fn(fn):
            # Returns an AsyncTask
            return fn.asynq(*args, **kwargs)
        return ConstFuture(fn(*args, **kwargs))

Batching
--------

Batching is at the core of what makes ``asynq`` useful. To implement batching, you need to subclass
``asynq.BatchItemBase`` and ``asynq.BatchBase``. The first represents a single entry in a batch
(e.g., a single memcache key to fetch) and the second is responsible for executing the batch when
the scheduler requests it.

Batch items usually do not require much logic beyond registering themselves with the currently
active batch in ``__init__``. Batches need to override the ``_try_switch_active_batch`` method,
which changes the batch that is currently active, and the ``_flush`` method that executes it.
This method should call ``.set_value()`` on all the items in the batch.

An example implementation of batching for memcache is in the ``asynq/examples/batching.py`` file.
The framework also provides a ``DebugBatchItem`` for testing.

Most users of ``asynq`` should not need to implement batches frequently. At Quora, we use
thousands of asynchronous functions, but only five ``BatchBase`` subclasses.

Contexts
--------

``asynq`` provides support for Python context managers that are automatically activated and
deactivated when a particular task is scheduled. This feature is necessary because the scheduler
can schedule tasks in arbitrary order. For example, consider the following code:

.. code-block:: python

    @asynq()
    def show_warning():
        yield do_something_that_creates_a_warning.asynq()

    @asynq()
    def suppress_warning():
        with warnings.catch_warnings():
            yield show_warning.asynq()

    @asynq()
    def caller():
        yield show_warning.asynq(), suppress_warning.asynq()

This code should show only one warning, because only the second call to ``show_warning`` is within
a ``catch_warnings()`` context, but depending on how the scheduler happens to execute these
functions, the code that shows the warning may also be executed while ``catch_warnings()`` is
active.

To remedy this problem, you should use an ``AsyncContext``, which will be automatically paused when
the task that created it is no longer active and resumed when it becomes active again. An
``asynq``-compatible version of ``catch_warnings`` would look something like this:

.. code-block:: python

    class catch_warnings(asynq.AsyncContext):
        def pause(self):
            stop_catching_warnings()

        def resume(self):
            start_catching_warnings()

Debugging
---------

Because the ``asynq`` scheduler is invoked every time an asynchronous function is called, and it
can invoke arbitrary other active futures, normal Python stack traces become useless in a
sufficiently complicated application built on ``asynq``. To make debugging easier, the framework
provides the ability to generate a custom ``asynq`` stack trace, which shows how each active
asynchronous function was invoked.

The ``asynq.debug.dump_asynq_stack()`` method can be used to print this stack, similar to
``traceback.print_stack()``. The framework also registers a hook to print out the ``asynq`` stack
when an exception happens.

Tools
-----

``asynq`` provides a number of additional tools to make it easier to write asynchronous code. Some
of these are in the ``asynq.tools`` module. These tools include:

- ``asynq.async_call`` calls a function asynchronously only if it is asynchronous. This can be
  useful when calling an overridden method that is asynchronous on some child classes but not on others.
- ``asynq.tools.call_with_context`` calls an asynchronous function within the provided context
  manager. This is helpful in cases where you need to yield multiple tasks at once, but only one
  needs to be within the context.
- ``asynq.tools.afilter`` and ``asynq.tools.asorted`` are equivalents of the standard ``filter``
  and ``sorted`` functions that take asynchronous functions as their filter and compare functions.
- ``asynq.tools.acached_per_instance`` caches an asynchronous instance method.
- ``asynq.tools.deduplicate`` prevents multiple simultaneous calls to the same asynchronous
  function.
- The ``asynq.mock`` module is an enhancement to the standard ``mock`` module that makes it
  painless to mock asynchronous functions. Without this module, mocking any asynchronous function
  will often also require mocking its ``.asynq`` attribute. We recommend using ``asynq.mock.patch``
  for all mocking in projects that use ``asynq``.
- The ``asynq.generator`` module provides an experimental implementation of asynchronous
  generators, which can produce a sequence of values while also using ``asynq``'s batching support.

Compatibility
-------------

``asynq`` runs on Python 3.6 and newer.

Previous versions of ``asynq`` used the name ``async`` for the ``@asynq()`` decorator and the
``.asynq`` attribute. Because ``async`` is a keyword in recent versions of Python 3, we now use
the spelling ``asynq`` in both places. ``asynq`` version 1.3.0 drops support for the old spelling.

Contributors
------------

`Alex Yakunin <https://github.com/alexyakunin>`_, `Jelle Zijlstra <https://github.com/JelleZijlstra>`_, `Manan Nayak <https://github.com/manannayak>`_, `Martin Michelsen <https://github.com/fuzziqersoftware>`_, `Shrey Banga <https://github.com/banga>`_, `Suren Nihalani <https://github.com/snihalani>`_, `Suchir Balaji <https://github.com/suchir>`_ and
other engineers at Quora.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/quora/asynq",
    "name": "asynq",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "quora asynq common utility",
    "author": "Quora, Inc.",
    "author_email": "asynq@quora.com",
    "download_url": "https://files.pythonhosted.org/packages/fb/16/f75e08e521f3e2b44668f4a44b00f2f0567c13b34866a154ec6e7617d529/asynq-1.5.0.tar.gz",
    "platform": null,
    "description": ".. image:: http://i.imgur.com/jCPNyOa.png\n\n``asynq`` is a library for asynchronous programming in Python with a focus on batching requests to\nexternal services. It also provides seamless interoperability with synchronous code, support for\nasynchronous context managers, and tools to make writing and testing asynchronous code easier.\n``asynq`` was developed at Quora and is a core component of Quora's architecture. See the original blog\npost `here <https://www.quora.com/q/quoraengineering/Asynchronous-Programming-in-Python>`_.\n\nThe most important use case for ``asynq`` is batching. For many storage services (e.g., memcache,\nredis) it is far faster to make a single request that fetches many keys at once than to make\nmany requests that each fetch a single key. The ``asynq`` framework makes it easy to write code\nthat takes advantage of batching without radical changes in code structure from code that does not\nuse batching.\n\nFor example, synchronous code to retrieve the names of the authors of a list of Quora answers may\nlook like this:\n\n.. code-block:: python\n\n    def all_author_names(aids):\n        uids = [author_of_answer(aid) for aid in aids]\n        names = [name_of_user(uid) for uid in uids]\n        return names\n\nHere, each call to ``author_of_answer`` and ``name_of_user`` would result in a memcache request.\nConverted to use ``asynq``, this code would look like:\n\n.. code-block:: python\n\n    @asynq()\n    def all_author_names(aids):\n        uids = yield [author_of_answer.asynq(aid) for aid in aids]\n        names = yield [name_of_user.asynq(uid) for uid in uids]\n        return names\n\nAll ``author_of_answer`` calls will be combined into a single memcache request, as will all of the\n``name_of_user`` calls.\n\nFutures\n-------\n\nFutures are the basic building blocks of ``asynq``'s programming model. The scheduler keeps track\nof futures and attempts to schedule them in an efficient way. ``asynq`` uses its own hierarchy of\nFuture classes, rooted in ``asynq.FutureBase``. Futures have a ``.value()`` method that computes\ntheir value if necessary and then returns it.\n\nThe following are the most important Future classes used in ``asynq``:\n\n- ``AsyncTask``, a Future representing the execution of an asynchronous function (see below).\n  Normally created by calling ``.asynq()`` on an asynchronous function.\n- ``ConstFuture``, a Future whose value is known at creation time. This is useful when you need\n  to pass a Future somewhere, but no computation is actually needed.\n- ``BatchBase`` and ``BatchItemBase``, the building blocks for doing batching. See below for\n  details.\n\n\nDecorators and asynchronous functions\n-------------------------------------\n\n``asynq``'s asynchronous functions are implemented as Python generator functions. Every time an\nasynchronous functions yields one or more Futures, it cedes control the asynq scheduler, which will\nresolve the futures that were yielded and continue running the function after the futures have been\ncomputed.\n\nThe framework requires usage of the ``@asynq()`` decorator on all asynchronous functions. This\ndecorator wraps the generator function so that it can be called like a normal, synchronous function.\nIt also creates a ``.asynq`` attribute on the function that allows calling the function\nasynchronously. Calling this attribute will return an ``AsyncTask`` object corresponding to the\nfunction.\n\nYou can call an asynchronous function synchronously like this:\n\n.. code-block:: python\n\n    result = async_fn(a, b)\n\nand asynchronously like this:\n\n.. code-block:: python\n\n    result = yield async_fn.asynq(a, b)\n\nCalling ``async_fn.asynq(a, b).value()`` has the same result as ``async_fn(a, b)``.\n\nThe decorator has a ``pure=True`` option that disables the ``.asynq`` attribute and instead makes\nthe function itself asynchronous, so that calling it returns an ``AsyncTask``. We recommend to use\nthis option only in special cases like decorators for asynchronous functions.\n\n``asynq`` also provides an ``@async_proxy()`` decorator for functions that return a Future\ndirectly. Functions decorated with ``@async_proxy()`` look like ``@asynq()`` functions externally.\nAn example use case is a function that takes either an asynchronous or a synchronous function,\nand calls it accordingly:\n\n.. code-block:: python\n\n    @async_proxy()\n    def async_call(fn, *args, **kwargs):\n        if is_async_fn(fn):\n            # Returns an AsyncTask\n            return fn.asynq(*args, **kwargs)\n        return ConstFuture(fn(*args, **kwargs))\n\nBatching\n--------\n\nBatching is at the core of what makes ``asynq`` useful. To implement batching, you need to subclass\n``asynq.BatchItemBase`` and ``asynq.BatchBase``. The first represents a single entry in a batch\n(e.g., a single memcache key to fetch) and the second is responsible for executing the batch when\nthe scheduler requests it.\n\nBatch items usually do not require much logic beyond registering themselves with the currently\nactive batch in ``__init__``. Batches need to override the ``_try_switch_active_batch`` method,\nwhich changes the batch that is currently active, and the ``_flush`` method that executes it.\nThis method should call ``.set_value()`` on all the items in the batch.\n\nAn example implementation of batching for memcache is in the ``asynq/examples/batching.py`` file.\nThe framework also provides a ``DebugBatchItem`` for testing.\n\nMost users of ``asynq`` should not need to implement batches frequently. At Quora, we use\nthousands of asynchronous functions, but only five ``BatchBase`` subclasses.\n\nContexts\n--------\n\n``asynq`` provides support for Python context managers that are automatically activated and\ndeactivated when a particular task is scheduled. This feature is necessary because the scheduler\ncan schedule tasks in arbitrary order. For example, consider the following code:\n\n.. code-block:: python\n\n    @asynq()\n    def show_warning():\n        yield do_something_that_creates_a_warning.asynq()\n\n    @asynq()\n    def suppress_warning():\n        with warnings.catch_warnings():\n            yield show_warning.asynq()\n\n    @asynq()\n    def caller():\n        yield show_warning.asynq(), suppress_warning.asynq()\n\nThis code should show only one warning, because only the second call to ``show_warning`` is within\na ``catch_warnings()`` context, but depending on how the scheduler happens to execute these\nfunctions, the code that shows the warning may also be executed while ``catch_warnings()`` is\nactive.\n\nTo remedy this problem, you should use an ``AsyncContext``, which will be automatically paused when\nthe task that created it is no longer active and resumed when it becomes active again. An\n``asynq``-compatible version of ``catch_warnings`` would look something like this:\n\n.. code-block:: python\n\n    class catch_warnings(asynq.AsyncContext):\n        def pause(self):\n            stop_catching_warnings()\n\n        def resume(self):\n            start_catching_warnings()\n\nDebugging\n---------\n\nBecause the ``asynq`` scheduler is invoked every time an asynchronous function is called, and it\ncan invoke arbitrary other active futures, normal Python stack traces become useless in a\nsufficiently complicated application built on ``asynq``. To make debugging easier, the framework\nprovides the ability to generate a custom ``asynq`` stack trace, which shows how each active\nasynchronous function was invoked.\n\nThe ``asynq.debug.dump_asynq_stack()`` method can be used to print this stack, similar to\n``traceback.print_stack()``. The framework also registers a hook to print out the ``asynq`` stack\nwhen an exception happens.\n\nTools\n-----\n\n``asynq`` provides a number of additional tools to make it easier to write asynchronous code. Some\nof these are in the ``asynq.tools`` module. These tools include:\n\n- ``asynq.async_call`` calls a function asynchronously only if it is asynchronous. This can be\n  useful when calling an overridden method that is asynchronous on some child classes but not on others.\n- ``asynq.tools.call_with_context`` calls an asynchronous function within the provided context\n  manager. This is helpful in cases where you need to yield multiple tasks at once, but only one\n  needs to be within the context.\n- ``asynq.tools.afilter`` and ``asynq.tools.asorted`` are equivalents of the standard ``filter``\n  and ``sorted`` functions that take asynchronous functions as their filter and compare functions.\n- ``asynq.tools.acached_per_instance`` caches an asynchronous instance method.\n- ``asynq.tools.deduplicate`` prevents multiple simultaneous calls to the same asynchronous\n  function.\n- The ``asynq.mock`` module is an enhancement to the standard ``mock`` module that makes it\n  painless to mock asynchronous functions. Without this module, mocking any asynchronous function\n  will often also require mocking its ``.asynq`` attribute. We recommend using ``asynq.mock.patch``\n  for all mocking in projects that use ``asynq``.\n- The ``asynq.generator`` module provides an experimental implementation of asynchronous\n  generators, which can produce a sequence of values while also using ``asynq``'s batching support.\n\nCompatibility\n-------------\n\n``asynq`` runs on Python 3.6 and newer.\n\nPrevious versions of ``asynq`` used the name ``async`` for the ``@asynq()`` decorator and the\n``.asynq`` attribute. Because ``async`` is a keyword in recent versions of Python 3, we now use\nthe spelling ``asynq`` in both places. ``asynq`` version 1.3.0 drops support for the old spelling.\n\nContributors\n------------\n\n`Alex Yakunin <https://github.com/alexyakunin>`_, `Jelle Zijlstra <https://github.com/JelleZijlstra>`_, `Manan Nayak <https://github.com/manannayak>`_, `Martin Michelsen <https://github.com/fuzziqersoftware>`_, `Shrey Banga <https://github.com/banga>`_, `Suren Nihalani <https://github.com/snihalani>`_, `Suchir Balaji <https://github.com/suchir>`_ and\nother engineers at Quora.\n",
    "bugtrack_url": null,
    "license": "Apache Software License",
    "summary": "Quora's asynq library",
    "version": "1.5.0",
    "project_urls": {
        "Homepage": "https://github.com/quora/asynq"
    },
    "split_keywords": [
        "quora",
        "asynq",
        "common",
        "utility"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9a7db32c49a4dee20ef99d940564e04044a57b1e610e4a1c51e5290e0d7ac84",
                "md5": "9f658b58276f7d33ce367a43f84fdc40",
                "sha256": "389669604d9d08eae0700f4f92b3dd4c284382fccb2e7c703cedb9f4baaf52f4"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9f658b58276f7d33ce367a43f84fdc40",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 624727,
            "upload_time": "2023-05-26T04:18:33",
            "upload_time_iso_8601": "2023-05-26T04:18:33.354063Z",
            "url": "https://files.pythonhosted.org/packages/a9/a7/db32c49a4dee20ef99d940564e04044a57b1e610e4a1c51e5290e0d7ac84/asynq-1.5.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "330f26332a40a0990fe76ba6f812d4d6a7d3888c804b115a8017649f4f967c78",
                "md5": "9a0e562b28eabc5cd30ec1c45958b03e",
                "sha256": "bab7bdcafaad0280210d876bf48bd1e7d659877f576ef5a4f50bc4b993746597"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "9a0e562b28eabc5cd30ec1c45958b03e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2704551,
            "upload_time": "2023-05-26T04:18:35",
            "upload_time_iso_8601": "2023-05-26T04:18:35.671482Z",
            "url": "https://files.pythonhosted.org/packages/33/0f/26332a40a0990fe76ba6f812d4d6a7d3888c804b115a8017649f4f967c78/asynq-1.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa642d3b951e9acf7ca938174738d3f73598d4a0de00c466b61509126363446c",
                "md5": "11d6b8085f7eb6ff2eb68915c7c2a328",
                "sha256": "67bf28b641850f5d0c62edc6249dd54dc529d98f0ca769dcb1f095c1bbe7e7a4"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "11d6b8085f7eb6ff2eb68915c7c2a328",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2854006,
            "upload_time": "2023-05-26T04:18:38",
            "upload_time_iso_8601": "2023-05-26T04:18:38.087877Z",
            "url": "https://files.pythonhosted.org/packages/aa/64/2d3b951e9acf7ca938174738d3f73598d4a0de00c466b61509126363446c/asynq-1.5.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2f8d93a5dd015a7e49699ab6e2e5ffa51100ed9ee5b5e80fe5c555b53041d803",
                "md5": "cf6eb61c3a6a8fa92560021414a4a0aa",
                "sha256": "854098ae47e8b2c5d61850886ff8253bda13a993d49046145c51de52e523936f"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "cf6eb61c3a6a8fa92560021414a4a0aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2758245,
            "upload_time": "2023-05-26T04:18:40",
            "upload_time_iso_8601": "2023-05-26T04:18:40.295702Z",
            "url": "https://files.pythonhosted.org/packages/2f/8d/93a5dd015a7e49699ab6e2e5ffa51100ed9ee5b5e80fe5c555b53041d803/asynq-1.5.0-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1f0151a347eb7d7fd9e5bf162b18b614496d742b72c9dbb90b86eb926c67a8a0",
                "md5": "02156d88077fac9531e20d3a80bdf2c6",
                "sha256": "9b78197de7f0b415a294257d5b4e85b0f1c1e7ff79ce47ee43d6a33308c5518d"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "02156d88077fac9531e20d3a80bdf2c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 2883696,
            "upload_time": "2023-05-26T04:18:42",
            "upload_time_iso_8601": "2023-05-26T04:18:42.198779Z",
            "url": "https://files.pythonhosted.org/packages/1f/01/51a347eb7d7fd9e5bf162b18b614496d742b72c9dbb90b86eb926c67a8a0/asynq-1.5.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e81184f9719a1a22f40cb85a9f9fa6003c7b31c255f41d2dfff86f5443528599",
                "md5": "ba5255c97e031eb18314175513643ee7",
                "sha256": "98fbadb5cd0fff0bab4a8915253d52777c48ddad10c862161d1ad11f7abb3165"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ba5255c97e031eb18314175513643ee7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 452102,
            "upload_time": "2023-05-26T04:18:44",
            "upload_time_iso_8601": "2023-05-26T04:18:44.287544Z",
            "url": "https://files.pythonhosted.org/packages/e8/11/84f9719a1a22f40cb85a9f9fa6003c7b31c255f41d2dfff86f5443528599/asynq-1.5.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "092eba57f78f84350f3ab4669bf6240394e2d1c5edce0fa9ba83b7592808d086",
                "md5": "7f820c09ec2931daf3cd4436e336d5ec",
                "sha256": "7f21c5532c5b4c93e915a28c93f19fc8b34a7a3c60d3680af16b965bbeb9c8a0"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7f820c09ec2931daf3cd4436e336d5ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 502073,
            "upload_time": "2023-05-26T04:18:45",
            "upload_time_iso_8601": "2023-05-26T04:18:45.814265Z",
            "url": "https://files.pythonhosted.org/packages/09/2e/ba57f78f84350f3ab4669bf6240394e2d1c5edce0fa9ba83b7592808d086/asynq-1.5.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d3311e2a2b9951c5098c287f128b44d1b24ec8eea4cc211b6f6088e5f4287ee",
                "md5": "c7f2593ce1e52de4d73da03b3d065ee5",
                "sha256": "c36556b32125cf8b9c393ef34b3633f0bafbb1fe2c139fab68cfa4a46ccb73ec"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c7f2593ce1e52de4d73da03b3d065ee5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 608837,
            "upload_time": "2023-05-26T04:18:47",
            "upload_time_iso_8601": "2023-05-26T04:18:47.924383Z",
            "url": "https://files.pythonhosted.org/packages/2d/33/11e2a2b9951c5098c287f128b44d1b24ec8eea4cc211b6f6088e5f4287ee/asynq-1.5.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ce180a110c3f35f7ac454508808cedc207d34243dd9fbad4fa885c6a82bf3aa",
                "md5": "a299c644eda68b58f184d315f2714e6c",
                "sha256": "d40bcc94355008e4a238cf5becb825a9a1212c5a837418ba323b3a2fc3253828"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "a299c644eda68b58f184d315f2714e6c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2853991,
            "upload_time": "2023-05-26T04:18:49",
            "upload_time_iso_8601": "2023-05-26T04:18:49.451718Z",
            "url": "https://files.pythonhosted.org/packages/7c/e1/80a110c3f35f7ac454508808cedc207d34243dd9fbad4fa885c6a82bf3aa/asynq-1.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e38e06ba98f7ae9d7820cee6521bfdbb6af1a3b2dcbe9412fd11dc26e7243748",
                "md5": "71ff82590dee17ab02b4a228b7c521f3",
                "sha256": "f329f08e2d61d0a01cff7a9fed7765d0352ee97e32d64cb6d0696f2b8ae8164d"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "71ff82590dee17ab02b4a228b7c521f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3042008,
            "upload_time": "2023-05-26T04:18:51",
            "upload_time_iso_8601": "2023-05-26T04:18:51.444363Z",
            "url": "https://files.pythonhosted.org/packages/e3/8e/06ba98f7ae9d7820cee6521bfdbb6af1a3b2dcbe9412fd11dc26e7243748/asynq-1.5.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f6f5b5ae81189546727b2a8cfa4209080abd5e7fc382463c2a8bd97e178c687d",
                "md5": "67694debd0d76496db8f80e5c82b1751",
                "sha256": "cf2f44b1e009ec42ca4fdd1719095f87c40ccaea1f4423f12e803831f676e700"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "67694debd0d76496db8f80e5c82b1751",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 2881429,
            "upload_time": "2023-05-26T04:18:53",
            "upload_time_iso_8601": "2023-05-26T04:18:53.665289Z",
            "url": "https://files.pythonhosted.org/packages/f6/f5/b5ae81189546727b2a8cfa4209080abd5e7fc382463c2a8bd97e178c687d/asynq-1.5.0-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5cc9670d747e482141e6f6c09ad1362b8715601207596632413bf1cc8b1b870c",
                "md5": "458c10cd74fa727fabab83171ab9e7b4",
                "sha256": "98998844d36f9cea73b08030d5df5656194d7451d168e96686541141721bdfd2"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "458c10cd74fa727fabab83171ab9e7b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 3029331,
            "upload_time": "2023-05-26T04:18:55",
            "upload_time_iso_8601": "2023-05-26T04:18:55.611928Z",
            "url": "https://files.pythonhosted.org/packages/5c/c9/670d747e482141e6f6c09ad1362b8715601207596632413bf1cc8b1b870c/asynq-1.5.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e53af14f26ca644efbfd2d0eb1638a2543fa356689e3909b7be06e3ad356e4f4",
                "md5": "dca481f334dd2c6ca769e517261ff9dc",
                "sha256": "370dd5d008155c47170631fd667c73e1d697f6868f71882fb7611bd06abed637"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "dca481f334dd2c6ca769e517261ff9dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 448728,
            "upload_time": "2023-05-26T04:18:57",
            "upload_time_iso_8601": "2023-05-26T04:18:57.338491Z",
            "url": "https://files.pythonhosted.org/packages/e5/3a/f14f26ca644efbfd2d0eb1638a2543fa356689e3909b7be06e3ad356e4f4/asynq-1.5.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "796ec22ed09ab2fb0aedf54eeee1516b6fc9e4e433ad8a846b1041e191122ae4",
                "md5": "9996e02d4bea515f712af1da5d4bc6bd",
                "sha256": "19b93eae25f8421029f143649b5309ffcaf45f6e2764793f687b0dd41c91cd27"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9996e02d4bea515f712af1da5d4bc6bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 494379,
            "upload_time": "2023-05-26T04:18:59",
            "upload_time_iso_8601": "2023-05-26T04:18:59.341380Z",
            "url": "https://files.pythonhosted.org/packages/79/6e/c22ed09ab2fb0aedf54eeee1516b6fc9e4e433ad8a846b1041e191122ae4/asynq-1.5.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80a94768fbc16dcc7e7e7fc37b1686effc938f62c9e2454a6a2fea5f88c6fcdd",
                "md5": "d88f48aa157f5c4b8004fe341f4ee1be",
                "sha256": "5ac0060423405ba5500236e902acceec2ec1cd027d6a402f7c1b5d104242817d"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d88f48aa157f5c4b8004fe341f4ee1be",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 621716,
            "upload_time": "2023-05-26T04:19:01",
            "upload_time_iso_8601": "2023-05-26T04:19:01.495460Z",
            "url": "https://files.pythonhosted.org/packages/80/a9/4768fbc16dcc7e7e7fc37b1686effc938f62c9e2454a6a2fea5f88c6fcdd/asynq-1.5.0-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5ae1001471ccc2ff4d3302dbed4d41ea48af30cc24756affa8afe848ac592a6",
                "md5": "c27f41ebd5f2058b710605da44018f9b",
                "sha256": "ba6e7c0eaae738fbbda7b50a7139719fa0b415cc42678e8fb34325171c4b8e7b"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "c27f41ebd5f2058b710605da44018f9b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2517448,
            "upload_time": "2023-05-26T04:19:03",
            "upload_time_iso_8601": "2023-05-26T04:19:03.616168Z",
            "url": "https://files.pythonhosted.org/packages/e5/ae/1001471ccc2ff4d3302dbed4d41ea48af30cc24756affa8afe848ac592a6/asynq-1.5.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d57f9c8268af5b08b75e8f34c1b6ced21e7a9fdc44032cdd3b79402dc6127c8e",
                "md5": "c2efa28875c220551db87c915a7fc5a2",
                "sha256": "be22348c20ca260e221a830463368eb4db0a90c45eb34cc4fa4bdb7e8e6f504c"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c2efa28875c220551db87c915a7fc5a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2662170,
            "upload_time": "2023-05-26T04:19:05",
            "upload_time_iso_8601": "2023-05-26T04:19:05.489699Z",
            "url": "https://files.pythonhosted.org/packages/d5/7f/9c8268af5b08b75e8f34c1b6ced21e7a9fdc44032cdd3b79402dc6127c8e/asynq-1.5.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "57955874927b7c8f268de20374a93688cafd9ad6945f2b8c23d2880e4d9cb5ed",
                "md5": "ae1a3ed1c05c066c15b979a078e8a2d0",
                "sha256": "e0f6b4c1c7e6fae1fc5c1bd439a421d4353abc0388aad287df0752e197d75fca"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "ae1a3ed1c05c066c15b979a078e8a2d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2565433,
            "upload_time": "2023-05-26T04:19:07",
            "upload_time_iso_8601": "2023-05-26T04:19:07.379946Z",
            "url": "https://files.pythonhosted.org/packages/57/95/5874927b7c8f268de20374a93688cafd9ad6945f2b8c23d2880e4d9cb5ed/asynq-1.5.0-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "492bee8e8abad4d87301a379b06a5aa078c45cdd1b6c4d0f2552b840ee0bbb86",
                "md5": "38ac5a355b0049ad36d6ccb8463fbc82",
                "sha256": "21f06529ebbd04062f1710277758ffaebf93ed12ab057a0f313b351d8ea48179"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "38ac5a355b0049ad36d6ccb8463fbc82",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 2689568,
            "upload_time": "2023-05-26T04:19:09",
            "upload_time_iso_8601": "2023-05-26T04:19:09.462692Z",
            "url": "https://files.pythonhosted.org/packages/49/2b/ee8e8abad4d87301a379b06a5aa078c45cdd1b6c4d0f2552b840ee0bbb86/asynq-1.5.0-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cfc7c07df8583e7d7d763cebbf493e3b9f4984c74c07495df0dd604c0f82ce4a",
                "md5": "bd2adc1b561f789a4728ad424ee6e72e",
                "sha256": "33a469e9c26ab77c7aa52059d9997b894619e58c3dcc7ae1036be3235a63a866"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "bd2adc1b561f789a4728ad424ee6e72e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 488733,
            "upload_time": "2023-05-26T04:19:11",
            "upload_time_iso_8601": "2023-05-26T04:19:11.657510Z",
            "url": "https://files.pythonhosted.org/packages/cf/c7/c07df8583e7d7d763cebbf493e3b9f4984c74c07495df0dd604c0f82ce4a/asynq-1.5.0-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b9c47d634881487627313f0210c6cf8304505775a111c8c05790788f5972ad3",
                "md5": "62513b36c56d224b479cfc95f0e0aa82",
                "sha256": "b11cb9b2cdf9f887ffe3f5eb017ba0b7397f3f97103a2d7da0a08959b0826f84"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "62513b36c56d224b479cfc95f0e0aa82",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 557881,
            "upload_time": "2023-05-26T04:19:13",
            "upload_time_iso_8601": "2023-05-26T04:19:13.364599Z",
            "url": "https://files.pythonhosted.org/packages/6b/9c/47d634881487627313f0210c6cf8304505775a111c8c05790788f5972ad3/asynq-1.5.0-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9d038051ae277c05e56ae16db9408e7d9a6359059ec86cb0e7305d02756c7459",
                "md5": "c0cdec9e80788c8d2bbe7a7c0c4a1575",
                "sha256": "994a635519b3cd3a54d01ab802d1df52a6b7452dd58c838e2c6743587832fe17"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c0cdec9e80788c8d2bbe7a7c0c4a1575",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 604108,
            "upload_time": "2023-05-26T04:19:15",
            "upload_time_iso_8601": "2023-05-26T04:19:15.113998Z",
            "url": "https://files.pythonhosted.org/packages/9d/03/8051ae277c05e56ae16db9408e7d9a6359059ec86cb0e7305d02756c7459/asynq-1.5.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d4c5018351cfca82d6fc0dad1f05411cd258948cf6022587803b8192970a597",
                "md5": "40f10e50dfba81b80b0babb5002390d2",
                "sha256": "b2d4107e4a2135a5e80ec200c5d59d6f4c7c4788a9bfe7a23ab6598fdbf7b889"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "40f10e50dfba81b80b0babb5002390d2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2513739,
            "upload_time": "2023-05-26T04:19:17",
            "upload_time_iso_8601": "2023-05-26T04:19:17.063451Z",
            "url": "https://files.pythonhosted.org/packages/6d/4c/5018351cfca82d6fc0dad1f05411cd258948cf6022587803b8192970a597/asynq-1.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c3d7e0fce7a7902410bd1be665b1a489f494e466765e6cd29e5318e1620032ad",
                "md5": "8f564dd7febbafea807c30f70eba3756",
                "sha256": "db8102b15fb22ec3a047167e5197f0ecf83d5739b10c246557824dc4b85a1b10"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f564dd7febbafea807c30f70eba3756",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2658342,
            "upload_time": "2023-05-26T04:19:18",
            "upload_time_iso_8601": "2023-05-26T04:19:18.903353Z",
            "url": "https://files.pythonhosted.org/packages/c3/d7/e0fce7a7902410bd1be665b1a489f494e466765e6cd29e5318e1620032ad/asynq-1.5.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b66c262203efbd064ae1f0feb96667c19ec312bc8725446f3a75ec8ee7bade92",
                "md5": "168445911f8582f580a9290c033fe690",
                "sha256": "6f8fc05a00f0691d8f9296de873f8c81d657a090e7d0a8d1053f965ad9e4a851"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "168445911f8582f580a9290c033fe690",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2566953,
            "upload_time": "2023-05-26T04:19:20",
            "upload_time_iso_8601": "2023-05-26T04:19:20.742674Z",
            "url": "https://files.pythonhosted.org/packages/b6/6c/262203efbd064ae1f0feb96667c19ec312bc8725446f3a75ec8ee7bade92/asynq-1.5.0-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "475a0c3d3436b36bee806163af4298de496605a82663bca408db731e58b76238",
                "md5": "e4d87f4d57738fecfe041e622efae080",
                "sha256": "69b8ffc9d901f8f5903091228e3730410c4186e37e245dae8dcf0ced91ee36d3"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e4d87f4d57738fecfe041e622efae080",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 2689526,
            "upload_time": "2023-05-26T04:19:23",
            "upload_time_iso_8601": "2023-05-26T04:19:23.024827Z",
            "url": "https://files.pythonhosted.org/packages/47/5a/0c3d3436b36bee806163af4298de496605a82663bca408db731e58b76238/asynq-1.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "018ec6c0470a02137015dc7e72654a38b0f9f25dcc121cd2b3219548b1bc8b1c",
                "md5": "686ca63992ab68c7fa95035ec3f78fc3",
                "sha256": "427fc211b6e32e4447b43a09bc5f0422ec61ae4ab984c0c19990804497f46aa5"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "686ca63992ab68c7fa95035ec3f78fc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 453449,
            "upload_time": "2023-05-26T04:19:24",
            "upload_time_iso_8601": "2023-05-26T04:19:24.730168Z",
            "url": "https://files.pythonhosted.org/packages/01/8e/c6c0470a02137015dc7e72654a38b0f9f25dcc121cd2b3219548b1bc8b1c/asynq-1.5.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6776a55eade223b9a9f196d5e000b35fe1909da9ca11df27d51f22ed629d152a",
                "md5": "3f9d1b81d10de23809ec779160521d7f",
                "sha256": "3249b461b824a47b1c3513dfbcbe23d1274964b0d8535d58f02c9dc983288ce4"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3f9d1b81d10de23809ec779160521d7f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 502160,
            "upload_time": "2023-05-26T04:19:26",
            "upload_time_iso_8601": "2023-05-26T04:19:26.155321Z",
            "url": "https://files.pythonhosted.org/packages/67/76/a55eade223b9a9f196d5e000b35fe1909da9ca11df27d51f22ed629d152a/asynq-1.5.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fad12a81a4d409975eb627d9762b012099d08cf5ad7ec01037e65e2e3d895085",
                "md5": "7e3f8b2c354ca951161d2be720131365",
                "sha256": "e16f3fb1cf3268e6a4a760dac2ed72c9929bbd46ac8af6b3ac01c5a72d385008"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e3f8b2c354ca951161d2be720131365",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 616747,
            "upload_time": "2023-05-26T04:19:28",
            "upload_time_iso_8601": "2023-05-26T04:19:28.391642Z",
            "url": "https://files.pythonhosted.org/packages/fa/d1/2a81a4d409975eb627d9762b012099d08cf5ad7ec01037e65e2e3d895085/asynq-1.5.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46b94736956a6624cec1f2efb843e56a2042a7c9978b76e3704f9ce2264f49e5",
                "md5": "01d8a3c8bc2cafac51327fc3a4e25422",
                "sha256": "53f2cffd0874d42fc1caad18c1582ada7a526526b48e4fffdbfa1be4439e8e13"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "01d8a3c8bc2cafac51327fc3a4e25422",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2841453,
            "upload_time": "2023-05-26T04:19:30",
            "upload_time_iso_8601": "2023-05-26T04:19:30.453764Z",
            "url": "https://files.pythonhosted.org/packages/46/b9/4736956a6624cec1f2efb843e56a2042a7c9978b76e3704f9ce2264f49e5/asynq-1.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85c70911c75433cbc24328f1809b357eb93a37ebb90653dcef7457d3648f4d0c",
                "md5": "a4c9a69af6f8eb2ed63daf4d39a6f0c6",
                "sha256": "30fed4de895b8ba8edf6612027a9c6b0e6ad6ca9ca1f76673846206f99270dd5"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a4c9a69af6f8eb2ed63daf4d39a6f0c6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 2996336,
            "upload_time": "2023-05-26T04:19:32",
            "upload_time_iso_8601": "2023-05-26T04:19:32.564047Z",
            "url": "https://files.pythonhosted.org/packages/85/c7/0911c75433cbc24328f1809b357eb93a37ebb90653dcef7457d3648f4d0c/asynq-1.5.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4ae3e93a80f2d61c2410439ccbeb67d55c8f3c4b33d6c02f0f2ba303b0122a99",
                "md5": "fc58c1d4d5d949e4ef785577219bd8ab",
                "sha256": "0a7ac43788948dda9f806b8f6db7f77853fb066807f216ff49e793e9700bab3a"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "fc58c1d4d5d949e4ef785577219bd8ab",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3031314,
            "upload_time": "2023-05-26T04:19:34",
            "upload_time_iso_8601": "2023-05-26T04:19:34.245227Z",
            "url": "https://files.pythonhosted.org/packages/4a/e3/e93a80f2d61c2410439ccbeb67d55c8f3c4b33d6c02f0f2ba303b0122a99/asynq-1.5.0-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a22b4b98381c1a21b8d95586e21ed6ef994965b2b516cd20ff24173998b1d28c",
                "md5": "e5680662a18f2ecac2cc665ff3c67b5a",
                "sha256": "019ea43512cf438de76da24702ff24e772b7367e6a0c63e00db630287309f36c"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e5680662a18f2ecac2cc665ff3c67b5a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 3164173,
            "upload_time": "2023-05-26T04:19:35",
            "upload_time_iso_8601": "2023-05-26T04:19:35.837361Z",
            "url": "https://files.pythonhosted.org/packages/a2/2b/4b98381c1a21b8d95586e21ed6ef994965b2b516cd20ff24173998b1d28c/asynq-1.5.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6288ec2b69d2b1e60679e5748303621a21566ec32e73c3d32ad3563a79e4632a",
                "md5": "3b379e96e0f320f5b6970c7b446835e2",
                "sha256": "dd2118cbd434d5e7555e5e3fca74b33acfd80fd86c18b15ada0861d8902b8ada"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "3b379e96e0f320f5b6970c7b446835e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 462392,
            "upload_time": "2023-05-26T04:19:37",
            "upload_time_iso_8601": "2023-05-26T04:19:37.900492Z",
            "url": "https://files.pythonhosted.org/packages/62/88/ec2b69d2b1e60679e5748303621a21566ec32e73c3d32ad3563a79e4632a/asynq-1.5.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dbf797593f3e0489e094d204b76e82168c9fd9128e25aad2d8b1cecfae9cdbfc",
                "md5": "07635e506cea356b205371c4940a37b3",
                "sha256": "3fa48c78561a6f71416c574dee216deb5070b12e38819509d3daef0da6277385"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "07635e506cea356b205371c4940a37b3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 514181,
            "upload_time": "2023-05-26T04:19:39",
            "upload_time_iso_8601": "2023-05-26T04:19:39.347826Z",
            "url": "https://files.pythonhosted.org/packages/db/f7/97593f3e0489e094d204b76e82168c9fd9128e25aad2d8b1cecfae9cdbfc/asynq-1.5.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a875438ffed032d939dbbb6dddb811e537837dde7b5485722b84af1fb2a4997",
                "md5": "1ab89eb5c66f7b46bd9092356ece1826",
                "sha256": "9645b8ff9e849d97e77379bd9c212016a18f2a12ef40460236a0ecb277c2bf2e"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ab89eb5c66f7b46bd9092356ece1826",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 627728,
            "upload_time": "2023-05-26T04:19:40",
            "upload_time_iso_8601": "2023-05-26T04:19:40.848817Z",
            "url": "https://files.pythonhosted.org/packages/8a/87/5438ffed032d939dbbb6dddb811e537837dde7b5485722b84af1fb2a4997/asynq-1.5.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cc6589cdb8fbd2a31225353b3be536e916b25c0c73a31b34bdeab88b767c6a64",
                "md5": "1e1a06c440004658ad41e50059081003",
                "sha256": "a45fb9365a7a9343f922f9d1c73c7b0afb25aaef30053fa4d94b0b8fe6c9ec93"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1e1a06c440004658ad41e50059081003",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2777126,
            "upload_time": "2023-05-26T04:19:42",
            "upload_time_iso_8601": "2023-05-26T04:19:42.623581Z",
            "url": "https://files.pythonhosted.org/packages/cc/65/89cdb8fbd2a31225353b3be536e916b25c0c73a31b34bdeab88b767c6a64/asynq-1.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e16d2c302dbb6c6d89df48c824ccfca379b53e94de5e7736f8f33b9bf00832d4",
                "md5": "219b192afc68a7f1cf0057132dda985a",
                "sha256": "f834855fe19edb69609d873b2140d9996cf75b44fdc3b5ed289b46e451b84fa5"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "219b192afc68a7f1cf0057132dda985a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2933992,
            "upload_time": "2023-05-26T04:19:44",
            "upload_time_iso_8601": "2023-05-26T04:19:44.210924Z",
            "url": "https://files.pythonhosted.org/packages/e1/6d/2c302dbb6c6d89df48c824ccfca379b53e94de5e7736f8f33b9bf00832d4/asynq-1.5.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "66b0e238d962000c745aa8401752d65d35fa245add509ee105ca9aabeea3d5ff",
                "md5": "38161e952154eed8fd6ee02f172c036b",
                "sha256": "eb78a45ffbf229eb5826c898200c12408f1c837dfc59b52b6c874383b7be61f8"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "38161e952154eed8fd6ee02f172c036b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2817943,
            "upload_time": "2023-05-26T04:19:46",
            "upload_time_iso_8601": "2023-05-26T04:19:46.492086Z",
            "url": "https://files.pythonhosted.org/packages/66/b0/e238d962000c745aa8401752d65d35fa245add509ee105ca9aabeea3d5ff/asynq-1.5.0-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "92a6de0e6daf6d2f55c8fac081686a5a0de72598e485a6ac9798f3132e3dfd54",
                "md5": "0168564dd57d9c2be5347c4460e463aa",
                "sha256": "8809e9e886093fa4aaf368cf695da9ad89b9dec9c91117b54f1f7441a01661f2"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0168564dd57d9c2be5347c4460e463aa",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 2956825,
            "upload_time": "2023-05-26T04:19:48",
            "upload_time_iso_8601": "2023-05-26T04:19:48.074659Z",
            "url": "https://files.pythonhosted.org/packages/92/a6/de0e6daf6d2f55c8fac081686a5a0de72598e485a6ac9798f3132e3dfd54/asynq-1.5.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bedd7a0c9741a0446dab01aa9e1b0256fa111217da67de32f60d54aff0ec82b6",
                "md5": "3933726042072b117dfa4591421cd082",
                "sha256": "75336340515f4b4965506d8773826fd0946d8b19f8eab3cfa6f527b612ed1694"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "3933726042072b117dfa4591421cd082",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 461531,
            "upload_time": "2023-05-26T04:19:49",
            "upload_time_iso_8601": "2023-05-26T04:19:49.743169Z",
            "url": "https://files.pythonhosted.org/packages/be/dd/7a0c9741a0446dab01aa9e1b0256fa111217da67de32f60d54aff0ec82b6/asynq-1.5.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fc6eb98b8f7cac1cf222613300f571651580bac1c3405afc246a710f31edabd0",
                "md5": "6284a6a3b0e02018ef58e5c0404fd647",
                "sha256": "0ea40f8d7580151136f75735a26864b4fa1a27ca61b2f4ece2659341533bd870"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6284a6a3b0e02018ef58e5c0404fd647",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 514622,
            "upload_time": "2023-05-26T04:19:51",
            "upload_time_iso_8601": "2023-05-26T04:19:51.185482Z",
            "url": "https://files.pythonhosted.org/packages/fc/6e/b98b8f7cac1cf222613300f571651580bac1c3405afc246a710f31edabd0/asynq-1.5.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "34b3d16a63a38d3a2fb2ab7cb5e0f568e7e8b0970614924b3becbc2cb6a6784a",
                "md5": "717c2855e6504e8594f264a4b44e5653",
                "sha256": "20a5a8aff15bc9e0d72f466955071abad4ae017fc7ffc04e7815a158661b4b21"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "717c2855e6504e8594f264a4b44e5653",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 463544,
            "upload_time": "2023-05-26T04:19:52",
            "upload_time_iso_8601": "2023-05-26T04:19:52.545196Z",
            "url": "https://files.pythonhosted.org/packages/34/b3/d16a63a38d3a2fb2ab7cb5e0f568e7e8b0970614924b3becbc2cb6a6784a/asynq-1.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4537f7ce181155b36ec318ec98bf74a8f455607b9b616d06c46a43fe3037f4d3",
                "md5": "47ef6b56d3e13106acdbc238a081d565",
                "sha256": "00301da4f42d637835d9a531d715df2ec7a020942663193a5ef5e515d4a0c02f"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "47ef6b56d3e13106acdbc238a081d565",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 552411,
            "upload_time": "2023-05-26T04:19:54",
            "upload_time_iso_8601": "2023-05-26T04:19:54.221869Z",
            "url": "https://files.pythonhosted.org/packages/45/37/f7ce181155b36ec318ec98bf74a8f455607b9b616d06c46a43fe3037f4d3/asynq-1.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a680dd5944b3df9f46016428aa7c44959cbc26421681cb29bc57c1c521d5583",
                "md5": "5a266c7c98c3b45116a1202df4fe520f",
                "sha256": "bc632c51211f4af09fba9f87eafbd66c6001ce5ca50eed2c91bcdf0cb504bc2a"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "5a266c7c98c3b45116a1202df4fe520f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 558486,
            "upload_time": "2023-05-26T04:19:55",
            "upload_time_iso_8601": "2023-05-26T04:19:55.770593Z",
            "url": "https://files.pythonhosted.org/packages/7a/68/0dd5944b3df9f46016428aa7c44959cbc26421681cb29bc57c1c521d5583/asynq-1.5.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4e3673a34b9aae434961e3c8ffb2b45e1199e99294d0616ce7899f481bed3e7",
                "md5": "62ab8c5303dc26b96eff64e64dbde47a",
                "sha256": "ebe6a1994cc88974fdbfcb90cb88a3eae301a0914c1571f40dcb405c2790cc58"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "62ab8c5303dc26b96eff64e64dbde47a",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 436786,
            "upload_time": "2023-05-26T04:19:57",
            "upload_time_iso_8601": "2023-05-26T04:19:57.106051Z",
            "url": "https://files.pythonhosted.org/packages/d4/e3/673a34b9aae434961e3c8ffb2b45e1199e99294d0616ce7899f481bed3e7/asynq-1.5.0-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13b2d1b262b68290d88dbe137a95cb8d08fae93cea42432527f335d8c34b4198",
                "md5": "d1b8fefc58496e02ff28e42670a98be3",
                "sha256": "3cb61707ea5c8e8e015aceb4f1c21cd368e7a656f787a155a8115a36c3e57aa0"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1b8fefc58496e02ff28e42670a98be3",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 463249,
            "upload_time": "2023-05-26T04:19:58",
            "upload_time_iso_8601": "2023-05-26T04:19:58.726823Z",
            "url": "https://files.pythonhosted.org/packages/13/b2/d1b262b68290d88dbe137a95cb8d08fae93cea42432527f335d8c34b4198/asynq-1.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7ee35b88d1d6777f2b84ce77baca19b7b9e230676a5daf3821d7c4c2d6ad450",
                "md5": "96d71e9893f53c6bdf0631c396b409b2",
                "sha256": "428596c3daba99324a62d94fb25528ee239c46e1e8769872d17bfc1262bc1e05"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "96d71e9893f53c6bdf0631c396b409b2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 552305,
            "upload_time": "2023-05-26T04:20:01",
            "upload_time_iso_8601": "2023-05-26T04:20:01.039177Z",
            "url": "https://files.pythonhosted.org/packages/e7/ee/35b88d1d6777f2b84ce77baca19b7b9e230676a5daf3821d7c4c2d6ad450/asynq-1.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "713928a959b473e7afd35284004225c2873d11d85f67d60def325ad96497f8c8",
                "md5": "dd7b784b4f992563bdfb26c0e471d4b4",
                "sha256": "542d86c1411a3944c25ab6cdf26a5dfd21093eb1eb36601a293623631054bd3d"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dd7b784b4f992563bdfb26c0e471d4b4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 558434,
            "upload_time": "2023-05-26T04:20:02",
            "upload_time_iso_8601": "2023-05-26T04:20:02.743965Z",
            "url": "https://files.pythonhosted.org/packages/71/39/28a959b473e7afd35284004225c2873d11d85f67d60def325ad96497f8c8/asynq-1.5.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c80fc1c94b232ca574da1b5170eadb2eb51ad96fffc72077f6bc0a5d82e3d519",
                "md5": "a76e4998a5c5b0a19005e493524881b1",
                "sha256": "2a2bf514594dd40e5dc5ebc0c00159655d1af511f11ce1aa2a74dd441fcbc8d9"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a76e4998a5c5b0a19005e493524881b1",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 436673,
            "upload_time": "2023-05-26T04:20:04",
            "upload_time_iso_8601": "2023-05-26T04:20:04.942005Z",
            "url": "https://files.pythonhosted.org/packages/c8/0f/c1c94b232ca574da1b5170eadb2eb51ad96fffc72077f6bc0a5d82e3d519/asynq-1.5.0-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c96be62d9a3c3900a6a5b75d2cdd026519d7db235720849bb567d76e7d82f64",
                "md5": "22fdc1d46217a2a535ffe34f93890211",
                "sha256": "6ce56fc1119e35a421ea6ff83f490ab1324def1b376f49a85af8829eb1c13149"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "22fdc1d46217a2a535ffe34f93890211",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 469511,
            "upload_time": "2023-05-26T04:20:06",
            "upload_time_iso_8601": "2023-05-26T04:20:06.390560Z",
            "url": "https://files.pythonhosted.org/packages/2c/96/be62d9a3c3900a6a5b75d2cdd026519d7db235720849bb567d76e7d82f64/asynq-1.5.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "62114583de368abf41d397ffe2db5fab9b955374034f75e29711d761b5a8343e",
                "md5": "2a2533d0ce787ab96b3798849a1f2800",
                "sha256": "a7bf836425a6b5f2efc528c3d177cb466b2d3b744fa0248d419b960cc6b94daa"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2a2533d0ce787ab96b3798849a1f2800",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 557154,
            "upload_time": "2023-05-26T04:20:08",
            "upload_time_iso_8601": "2023-05-26T04:20:08.712872Z",
            "url": "https://files.pythonhosted.org/packages/62/11/4583de368abf41d397ffe2db5fab9b955374034f75e29711d761b5a8343e/asynq-1.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cda9cc029e11039cb1adc6469d86f565971de4242248b272581e963bd7c41120",
                "md5": "d33f5adf8cce7e3a20a7e9758f09296e",
                "sha256": "536a5b83adb806998d5f73012bdc4a3fb537aa1dbbb98081185b62205cf7846e"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d33f5adf8cce7e3a20a7e9758f09296e",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 557616,
            "upload_time": "2023-05-26T04:20:11",
            "upload_time_iso_8601": "2023-05-26T04:20:11.697537Z",
            "url": "https://files.pythonhosted.org/packages/cd/a9/cc029e11039cb1adc6469d86f565971de4242248b272581e963bd7c41120/asynq-1.5.0-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1ad8be2824c3ba9ccaf204ca9bc8d70963c07705b51d48f8238605b42f2779c",
                "md5": "9110d349732748fe20ed93a924d0181f",
                "sha256": "1fcdc78bf5c1bc091005d21f96424e10d1709e28456d435cb1383af7f9edb068"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9110d349732748fe20ed93a924d0181f",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 443221,
            "upload_time": "2023-05-26T04:20:13",
            "upload_time_iso_8601": "2023-05-26T04:20:13.205652Z",
            "url": "https://files.pythonhosted.org/packages/a1/ad/8be2824c3ba9ccaf204ca9bc8d70963c07705b51d48f8238605b42f2779c/asynq-1.5.0-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb16f75e08e521f3e2b44668f4a44b00f2f0567c13b34866a154ec6e7617d529",
                "md5": "7cd5dba8d3ae71adc388864c7510123d",
                "sha256": "07fc3ef84f0ff0137ef0fb8170d3de23519c16f1967c7701e5f4177a6810f967"
            },
            "downloads": -1,
            "filename": "asynq-1.5.0.tar.gz",
            "has_sig": false,
            "md5_digest": "7cd5dba8d3ae71adc388864c7510123d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 61464,
            "upload_time": "2023-05-26T04:20:14",
            "upload_time_iso_8601": "2023-05-26T04:20:14.893207Z",
            "url": "https://files.pythonhosted.org/packages/fb/16/f75e08e521f3e2b44668f4a44b00f2f0567c13b34866a154ec6e7617d529/asynq-1.5.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-05-26 04:20:14",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "quora",
    "github_project": "asynq",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "pytest",
            "specs": []
        },
        {
            "name": "Cython",
            "specs": [
                [
                    ">=",
                    "0.27.1"
                ]
            ]
        },
        {
            "name": "qcore",
            "specs": []
        },
        {
            "name": "pygments",
            "specs": []
        },
        {
            "name": "black",
            "specs": [
                [
                    "==",
                    "23.3.0"
                ]
            ]
        },
        {
            "name": "mypy",
            "specs": [
                [
                    "==",
                    "1.3.0"
                ]
            ]
        }
    ],
    "tox": true,
    "lcname": "asynq"
}
        
Elapsed time: 0.06895s