uuid_util.py 124 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
# -*- coding: utf-8 -*-

import uuid


def uuid4():
    return uuid.uuid4()


def uuid4_str():
    return str(uuid.uuid4())