oolonek / iter-together

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

iter-together

A package to iterate over multiple iterables together

Installation

To download this code and install it in development mode, run the following:

$ git clone https://github.com/oolonek/iter-together
$ cd iter-together
$ python install -e .

Testing

$ pip install tox
$ tox

Documentation

Documentation Status

Usage

>>> from iter_together_pma import iter_together
>>> for a, b in iter_together([1, 2, 3], [4, 5, 6]):
...     print(a, b)
...
1 4
2 5
3 6

About

License:MIT License


Languages

Language:Python 100.0%