--- id: aioitertools version: "0.13.0" license: MIT license_treatment: permissive maintenance: active --- # aioitertools — itertools and builtins for AsyncIO and mixed iterables License: permissive · Maintenance: active · Popularity: top 1,000 on PyPI ## Install pip install aioitertools uv add aioitertools poetry add aioitertools ## Description aioitertools ============ Implementation of itertools, builtins, and more for AsyncIO and mixed-type iterables. [![documentation](https://readthedocs.org/projects/aioitertools/badge/?version=latest)](https://aioitertools.omnilib.dev) [![version](https://img.shields.io/pypi/v/aioitertools.svg)](https://pypi.org/project/aioitertools) [![changelog](https://img.shields.io/badge/change-log-blue)](https://aioitertools.omnilib.dev/en/latest/changelog.html) [![license](https://img.shields.io/pypi/l/aioitertools.svg)](https://github.com/omnilib/aioitertools/blob/main/LICENSE) Install ------- aioitertools requires Python 3.9 or newer. You can install it from PyPI: ```sh $ 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: ```python from aioitertools import iter, next, map, zip something = iter(...) first_item = await next(something) async for item in iter(something): ... async def... ## AI interpretation — verify before relying Provides async-compatible versions of Python's itertools, builtins, and more-itertools functions, allowing you to work with both standard and async iterables using familiar function signatures. Verdict: A well-maintained, permissively licensed utility for async iteration with minimal dependencies and no known vulnerabilities. Suitable for projects that need to apply familiar itertools patterns to async workflows and mixed iterable types. [View on SkillFed](https://skillfed.io/packages/aioitertools) · [View on PyPI](https://pypi.org/project/aioitertools/)