Trees | Indices | Help |
|
---|
|
|
|||
|
|
|||
__doc__ = """g
|
|||
known_uuid_types = {1: uuid1, 3: uuid3, 4: uuid4, 5: uuid5,}
|
|
Generate an Universally Unique ID (UUID), according to RFC 4122. If an unknown uuid_type is provided, uses the UUID4 algorithm. >>> guids = [ generate() for x in range(100000) ] >>> guid_set = set( guids ) >>> len(guids) == len(guid_set) True >>> len( str( generate() ) ) == 36 True
|
|
__doc__
|
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Wed Jul 14 12:01:22 2010 | http://epydoc.sourceforge.net |