in src/ppxgboost/PPBooster.py [0:0]
def random_string(string_length=16):
"""
generate random strings
:param string_length:
:return: random strings
"""
letters = string.ascii_letters
return ''.join(random.choice(letters) for i in range(string_length))