asyncio-pool


Nameasyncio-pool JSON
Version 0.6.0 PyPI version JSON
download
home_pagehttps://github.com/gistart/asyncio-pool
SummaryPool of asyncio coroutines with familiar interface
upload_time2022-05-21 10:34:26
maintainer
docs_urlNone
authorgistart
requires_python>=3.5
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # asyncio-pool

Pool of asyncio coroutines with familiar interface. Supports python 3.5+ (including PyPy 6+, which is also 3.5 atm)

AioPool makes sure _no more_ and _no less_ (if possible) than `size` spawned coroutines are active at the same time. _spawned_ means created and scheduled with one of the pool interface methods, _active_ means coroutine function started executing it's code, as opposed to _waiting_ -- which waits for pool space without entering coroutine function.

Read more at [github page](https://github.com/gistart/asyncio-pool).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/gistart/asyncio-pool",
    "name": "asyncio-pool",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": "",
    "keywords": "",
    "author": "gistart",
    "author_email": "gistart@yandex.ru",
    "download_url": "https://files.pythonhosted.org/packages/99/11/65f0a225cb01ddd3782dcc0581085f10c9b3215bb911e6f66ff23053bc80/asyncio_pool-0.6.0.tar.gz",
    "platform": null,
    "description": "# asyncio-pool\n\nPool of asyncio coroutines with familiar interface. Supports python 3.5+ (including PyPy 6+, which is also 3.5 atm)\n\nAioPool makes sure _no more_ and _no less_ (if possible) than `size` spawned coroutines are active at the same time. _spawned_ means created and scheduled with one of the pool interface methods, _active_ means coroutine function started executing it's code, as opposed to _waiting_ -- which waits for pool space without entering coroutine function.\n\nRead more at [github page](https://github.com/gistart/asyncio-pool).\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Pool of asyncio coroutines with familiar interface",
    "version": "0.6.0",
    "project_urls": {
        "Homepage": "https://github.com/gistart/asyncio-pool"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13b7b22e41f2f3044da160a664ab74c337da876009ea8809318623ef10120904",
                "md5": "d5174cad1529753d7b68f6de66efa515",
                "sha256": "bf4417be93c2776262d93decabbbd633579f7610947fb73d80857823689e1455"
            },
            "downloads": -1,
            "filename": "asyncio_pool-0.6.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "d5174cad1529753d7b68f6de66efa515",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.5",
            "size": 8524,
            "upload_time": "2022-05-21T10:34:24",
            "upload_time_iso_8601": "2022-05-21T10:34:24.569511Z",
            "url": "https://files.pythonhosted.org/packages/13/b7/b22e41f2f3044da160a664ab74c337da876009ea8809318623ef10120904/asyncio_pool-0.6.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "991165f0a225cb01ddd3782dcc0581085f10c9b3215bb911e6f66ff23053bc80",
                "md5": "227409aad4fe497472e256f613e15e9c",
                "sha256": "d7ba5e299ba58d4fb0cebbc722989d1f880df4c4b19e37055075b3dabc062c5b"
            },
            "downloads": -1,
            "filename": "asyncio_pool-0.6.0.tar.gz",
            "has_sig": false,
            "md5_digest": "227409aad4fe497472e256f613e15e9c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 10206,
            "upload_time": "2022-05-21T10:34:26",
            "upload_time_iso_8601": "2022-05-21T10:34:26.356082Z",
            "url": "https://files.pythonhosted.org/packages/99/11/65f0a225cb01ddd3782dcc0581085f10c9b3215bb911e6f66ff23053bc80/asyncio_pool-0.6.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-05-21 10:34:26",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "gistart",
    "github_project": "asyncio-pool",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "asyncio-pool"
}
        
Elapsed time: 0.50903s