rcx_tk.utils ============ .. py:module:: rcx_tk.utils Functions --------- .. autoapisummary:: rcx_tk.utils.validate_filename rcx_tk.utils.replace_spaces rcx_tk.utils.concat_str Module Contents --------------- .. py:function:: validate_filename(file_name: str) -> bool Validate a filename. :param file_name: Filename to validate. :type file_name: str :returns: Validity of the filename. :rtype: bool .. py:function:: replace_spaces(file_name: str) -> str Replaces spaces with underscores in Filename. :param file_name: The filename. :type file_name: str :returns: The replaced filename. :rtype: str .. py:function:: concat_str(value: Any) -> str Join values that can be cast to string together into single string, elements separated by ,. :param value: Set of items to concatenate :type value: Any :returns: Joined result string. :rtype: str