Пример #1
0
def uuid_to_hex(uid):
    """Make 8-4-4-4-12 uuid into plain hex for the QAPI
    """
    return unicode_type(UUID(ensure_unicode(uid, name='uid')).hex)
Пример #2
0
def uuid_to_hex(uid):
    """Make 8-4-4-4-12 uuid into plain hex for the QAPI
    """
    return unicode_type(UUID(ensure_unicode(uid, name='uid')).hex)
Пример #3
0
def hex_to_uuid(hstr):
    """Make a 32 ascii char hex into a 8-4-4-4-12 uuid
    """
    return unicode_type(UUID(ensure_unicode(hstr, name='hstr')))
Пример #4
0
def hex_to_uuid(hstr):
    """Make a 32 ascii char hex into a 8-4-4-4-12 uuid
    """
    return unicode_type(UUID(ensure_unicode(hstr, name='hstr')))