This commit is contained in:
Christian Mantha
2026-03-02 19:10:52 -05:00
commit 2ca0b9ef7c
28907 changed files with 5233713 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
"""Python Utils
This package contains dependency-free Python utility functions used throughout the
codebase.
Each utility should belong in its own file and be the default export.
These functions are not part of the module interface and are subject to change.
"""
from .convert_case import camel_to_snake, snake_to_camel
from .cached_property import cached_property
from .description import (
Description,
is_description,
register_description,
unregister_description,
)
from .did_you_mean import did_you_mean
from .group_by import group_by
from .identity_func import identity_func
from .inspect import inspect
from .is_awaitable import is_awaitable
from .is_iterable import is_collection, is_iterable
from .natural_compare import natural_comparison_key
from .awaitable_or_value import AwaitableOrValue
from .suggestion_list import suggestion_list
from .frozen_error import FrozenError
from .frozen_list import FrozenList
from .frozen_dict import FrozenDict
from .merge_kwargs import merge_kwargs
from .path import Path
from .print_path_list import print_path_list
from .simple_pub_sub import SimplePubSub, SimplePubSubIterator
from .undefined import Undefined, UndefinedType
__all__ = [
"camel_to_snake",
"snake_to_camel",
"cached_property",
"did_you_mean",
"Description",
"group_by",
"is_description",
"register_description",
"unregister_description",
"identity_func",
"inspect",
"is_awaitable",
"is_collection",
"is_iterable",
"merge_kwargs",
"natural_comparison_key",
"AwaitableOrValue",
"suggestion_list",
"FrozenError",
"FrozenList",
"FrozenDict",
"Path",
"print_path_list",
"SimplePubSub",
"SimplePubSubIterator",
"Undefined",
"UndefinedType",
]