Skip to content

General purpose for/iterator looping generators/utilities.

License

Notifications You must be signed in to change notification settings

xyngular/py-xloop

Repository files navigation

PythonSupport PyPI version

Introduction

This library is intended to house general for/iterator looping generators/utilities.

Only one so far is xloop, see xloop docs.

Documentation

📄 Detailed Documentation | 🐍 PyPi

Install

# via pip
pip install xloop

# via poetry
poetry add xloop

Quick Start

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"]]

Licensing

This library is licensed under the MIT-0 License. See the LICENSE file.

About

General purpose for/iterator looping generators/utilities.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages