9 lines
296 B
Python
9 lines
296 B
Python
import random
|
|
import string
|
|
|
|
|
|
def generate_receipt_handle():
|
|
# http://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/ImportantIdentifiers.html#ImportantIdentifiers-receipt-handles
|
|
length = 185
|
|
return ''.join(random.choice(string.lowercase) for x in range(length))
|