Skip to content

Latest commit

 

History

History
46 lines (28 loc) · 1.04 KB

README.md

File metadata and controls

46 lines (28 loc) · 1.04 KB

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.