8 lines
107 B
Python
8 lines
107 B
Python
from __future__ import unicode_literals
|
|
|
|
import uuid
|
|
|
|
|
|
def generate_key_id():
|
|
return str(uuid.uuid4())
|