def normalize_company()

in osci/utils.py [0:0]


def normalize_company(name: str) -> str:
    """Generate company file name safety string
    Replace all non-alpha and non-numeric with '_'

    :param name: original string
    :return: company file name safety string
    """
    return ''.join((symbol if symbol.isalnum() else '_').lower() for symbol in str(name))