Skip to content

enricobacis/infinite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

infinite

itertools operations on infinite generators

Description

Some of the itertools operations do not work on infinite generators, this package is the beginning of the work to port some of the iterator concepts to the infinity.

infinite is compatible with both python2 and python3.

Installation

The package has been uploaded to PyPI, so you can install the package using pip:

pip install infinite

Usage

For example if we want to iterate all the pairs of natural numbers:

from itertools import count
from infinite import product

for x, y in product(count(0), count(0)):
    print(x, y)
    if (x, y) == (3, 3):
        break

About

itertools operations on infinite generators

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages