# -*- coding: utf-8 -*- import uuid def uuid4(): return uuid.uuid4() def uuid4_str(): return str(uuid.uuid4())