string#
- get_tokens(path) Generator[TokenInfo, None, None]#
- strip_quotes(arg: str) str#
- csvsplit(expr: str) list[str]#
Split expression on commas while ignoring commas that are contained within quotes (including nested quotes)
- pluralize(word: str, n: int)#
- stringify(arg: Any, float_fmt: str | None = None) str#
Turn the thing into a string
- truncate_middle(text: str, max_length: int = 254, sep: str = '...') str#
Returns truncated string with
sepreplacing middle.