moto/moto/apigateway/utils.py

11 lines
248 B
Python
Raw Normal View History

2016-03-01 12:03:59 -05:00
from __future__ import unicode_literals
import six
import random
2019-07-14 16:37:54 +00:00
import string
2016-03-01 12:03:59 -05:00
2016-03-01 18:50:06 -05:00
def create_id():
2016-03-01 12:03:59 -05:00
size = 10
2019-07-14 16:37:54 +00:00
chars = list(range(10)) + list(string.ascii_lowercase)
2016-03-01 12:03:59 -05:00
return ''.join(six.text_type(random.choice(chars)) for x in range(size))