v0.10.0
Feature release for cycler
. This release includes a number of new
features:
Cycler
objects learned to generate anitertools.cycle
by calling
them, a-la a generator.Cycler
objects learned to change the name of a key via the
new.change_key(old_key, new_key)
method.Cycler
objects learned how to compare each other and determine if
they are equal or not (==
).Cycler
objects learned how to join anotherCycler
to be
concatenated into a single longerCycler
viaconcat
method of function.
A.concat(B)
orconcat(A, B)
.- The
cycler
factory function learned to construct a complexCycler
from iterables provided as keyword arguments. Cycler
objects learn do show their insides with theby_key
method
which returns a dictionary of lists (instead of an iterable of dictionaries).