This document describes the current stable version of Celery (5.0). For development docs, go here.
celery.utils.text¶
Text formatting utilities.
-
celery.utils.text.dedent_initial(s: str, n: int = 4) → str[source]¶ Remove identation from first line of text.
-
celery.utils.text.ensure_newlines(s, n=2)¶ Ensure text s ends in separator sep’.
-
celery.utils.text.ensure_sep(sep: str, s: str, n: int = 2) → str[source]¶ Ensure text s ends in separator sep’.
-
celery.utils.text.fill_paragraphs(s: str, width: int, sep: str = '\n') → str[source]¶ Fill paragraphs with newlines (or custom separator).
-
celery.utils.text.pluralize(n: int, text: str, suffix: str = 's') → str[source]¶ Pluralize term when n is greater than one.
-
celery.utils.text.pretty(value: str, width: int = 80, nl_width: int = 80, sep: str = '\n', **kw: Any) → str[source]¶ Format value for printing to console.