Skip to main content

itertools and builtins for AsyncIO and mixed iterables

Project description

aioitertools

Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables.

documentation version changelog license

Install

aioitertools requires Python 3.6 or newer. You can install it from PyPI:

$ pip install aioitertools

Usage

aioitertools shadows the standard library whenever possible to provide asynchronous version of the modules and functions you already know. It's fully compatible with standard iterators and async iterators alike, giving you one unified, familiar interface for interacting with iterable objects:

from aioitertools import iter, next, map, zip

something = iter(...)
first_item = await next(something)

async for item in iter(something):
    ...


async def fetch(url):
    response = await aiohttp.request(...)
    return response.json

async for value in map(fetch, MANY_URLS):
    ...


async for a, b in zip(something, something_else):
    ...

aioitertools emulates the entire itertools module, offering the same function signatures, but as async generators. All functions support standard iterables and async iterables alike, and can take functions or coroutines:

from aioitertools import chain, islice

async def generator1(...):
    yield ...

async def generator2(...):
    yield ...

async for value in chain(generator1(), generator2()):
    ...

async for value in islice(generator1(), 2, None, 2):
    ...

See builtins.py, itertools.py, and more_itertools.py for full documentation of functions and abilities.

License

aioitertools is copyright Amethyst Reese, and licensed under the MIT license. I am providing code in this repository to you under an open source license. This is my personal repository; the license you receive to my code is from me and not from my employer. See the LICENSE file for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aioitertools-0.11.0.tar.gz (32.1 kB view details)

Uploaded Source

Built Distribution

aioitertools-0.11.0-py3-none-any.whl (23.7 kB view details)

Uploaded Python 3

File details

Details for the file aioitertools-0.11.0.tar.gz.

File metadata

  • Download URL: aioitertools-0.11.0.tar.gz
  • Upload date:
  • Size: 32.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: python-requests/2.28.1

File hashes

Hashes for aioitertools-0.11.0.tar.gz
Algorithm Hash digest
SHA256 42c68b8dd3a69c2bf7f2233bf7df4bb58b557bca5252ac02ed5187bbc67d6831
MD5 a1e9708ecf5416b89f0c8e7b097fa72a
BLAKE2b-256 4ae6888e1d726f0846c84e14a0f2f57873819eff9278b394d632aed979c98fbd

See more details on using hashes here.

File details

Details for the file aioitertools-0.11.0-py3-none-any.whl.

File metadata

File hashes

Hashes for aioitertools-0.11.0-py3-none-any.whl
Algorithm Hash digest
SHA256 04b95e3dab25b449def24d7df809411c10e62aab0cbe31a50ca4e68748c43394
MD5 55a1c40739034559096cc8b3f59d1ccf
BLAKE2b-256 4566d1a9fd8e6ff88f2157cb145dd054defb0fd7fe2507fe5a01347e7c690eab

See more details on using hashes here.

Supported by

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