This library is intended to house general for/iterator looping generators/utilities.
Only one so far is xloop
, see xloop docs.
📄 Detailed Documentation | 🐍 PyPi
# via pip
pip install xloop
# via poetry
poetry add xloop
from xloop import xloop
args = [None, "hello", 2, [3, 4], ['A', ["inner", "list"]]]
output = list(xloop(*args))
assert output == ["hello", 2, 3, 4, 'A', ["inner", "list"]]
This library is licensed under the MIT-0 License. See the LICENSE file.