{"categories":[{"label":"Software Development","url":"https://skillfed.io/packages/category/software-development/6"}],"enrichment":{"capability":"Wraps any iterable object to provide ORM-style query methods like .one(), .many(k), .skip(k), .all(), and .filter() for convenient item access and filtering.","skillfed_tags":["iterator-utilities","query-api"],"use_cases":["Simplify access to query results in custom ORM wrappers or data-fetching functions by replacing manual iteration with .one(), .many(k), or .all().","Chain multiple filter predicates on an iterable without nesting built-in filter() calls, improving readability.","Skip and retrieve a fixed number of items from an iterator using .skip(k).many(n) in a single readable expression.","Group large iterables into fixed-size chunks for batch processing using .iter_chunks(k).","Add type hints to iterator results by subclassing IterProxy with a generic type parameter for IDE autocomplete."],"what_it_does":"IterProxy is a lightweight wrapper that adds ORM-like query methods to any Python iterable. Instead of manually slicing, filtering, and consuming iterators with nested loops or built-in functions, you wrap an iterable in IterProxy and call chainable methods like .one(), .many(k), .skip(k), .all(), and .filter() to retrieve items in a more readable style. It supports both simple and compound filter logic using and_, or_, and not_ operators, and can group items into chunks.\n\nThe package has no runtime dependencies and works across Python 3.7 through 3.11. It is useful when you want to add a familiar query-like interface to custom iterables or when refactoring code that currently uses nested filter() calls or manual iteration. The dormant maintenance status (last release November 2023) means it is stable but unlikely to receive updates for new Python versions or features.","worth_installing":"Yes, if you frequently work with custom iterables and prefer a fluent query API over nested filter() calls or manual slicing. The zero-dependency footprint and permissive license make it low-risk. However, the dormant maintenance status means it will not receive updates for future Python versions; install only if your Python version is already in the supported range (3.7\u20133.11) and you do not expect the package to evolve."},"id":"iterproxy","links":{"html":"https://skillfed.io/packages/iterproxy","md":"https://skillfed.io/packages/iterproxy.md","pypi":"https://pypi.org/project/iterproxy/"},"maintenance":{"status":"dormant"},"meta":{"latest_release":"2023-11-02","license_spdx":null,"license_treatment":"permissive","name":"iterproxy","python_support":"unspecified","summary":"Give any iterable object capability to use .one(), .one_or_none(), .many(k), .skip(k), .all() API."},"popularity":{"monthly_downloads":870817,"position":4847,"tier":"top_5000"},"security":{"n_vulnerabilities":0},"version":"0.3.1"}
