absfuyu.extra.beautiful module
Absfuyu: Beautiful
A decorator that makes output more beautiful
Version: 5.1.0 Date updated: 10/03/2025 (dd/mm/yyyy)
- class absfuyu.extra.beautiful.BeautifulOutput(layout: Literal[1, 2, 3, 4, 5, 6] = 1, include_header: bool = True, include_footer: bool = True, alternate_footer: bool = False)[source]
Bases:
object
A decorator that makes output more beautiful
- absfuyu.extra.beautiful.print(*objects: Any, sep: str = ' ', end: str = '\n', style: Style | str | None = None, justify: Literal['default', 'left', 'center', 'right', 'full'] | None = None, overflow: Literal['fold', 'crop', 'ellipsis', 'ignore'] | None = None, no_wrap: bool | None = None, emoji: bool | None = None, markup: bool | None = None, highlight: bool | None = None, width: int | None = None, height: int | None = None, crop: bool = True, soft_wrap: bool | None = None, new_line_start: bool = False) None
Print to the console.
- Parameters:
objects (positional args) – Objects to log to the terminal.
sep (str, optional) – String to write between print data. Defaults to “ “.
end (str, optional) – String to write at end of print data. Defaults to “\n”.
style (Union[str, Style], optional) – A style to apply to output. Defaults to None.
justify (str, optional) – Justify method: “default”, “left”, “right”, “center”, or “full”. Defaults to
None
.overflow (str, optional) – Overflow method: “ignore”, “crop”, “fold”, or “ellipsis”. Defaults to None.
no_wrap (Optional[bool], optional) – Disable word wrapping. Defaults to None.
emoji (Optional[bool], optional) – Enable emoji code, or
None
to use console default. Defaults toNone
.markup (Optional[bool], optional) – Enable markup, or
None
to use console default. Defaults toNone
.highlight (Optional[bool], optional) – Enable automatic highlighting, or
None
to use console default. Defaults toNone
.width (Optional[int], optional) – Width of output, or
None
to auto-detect. Defaults toNone
.crop (Optional[bool], optional) – Crop output to width of terminal. Defaults to True.
soft_wrap (bool, optional) – Enable soft wrap mode which disables word wrapping and cropping of text or
None
for Console default. Defaults toNone
.new_line_start (bool, False) – Insert a new line at the start if the output contains more than one line. Defaults to
False
.