vamo_telbot.utils.visuals ========================= .. py:module:: vamo_telbot.utils.visuals .. autoapi-nested-parse:: Visuals utilities for the Telegram bot. Functions --------- .. autoapisummary:: vamo_telbot.utils.visuals.make_bar Module Contents --------------- .. py:function:: make_bar(percent, width = 12, fill = '█', empty = '░') Generate a simple text progress bar. :param percent: Progress percentage (0-100). :type percent: float :param width: Total width of the bar. :type width: int :param fill: Character to represent filled progress. :type fill: str :param empty: Character to represent empty progress. :type empty: str :returns: Text-based progress bar. :rtype: str