def random_string()

in deployment/sagemaker-dashboards-for-ml/cloudformation/deployment/string-functions/src/index.py [0:0]


def random_string(length):
    alphanumeric = string.ascii_lowercase + '0123456789'
    return ''.join(random.choice(alphanumeric) for i in range(length))