resqpy.olio.uuidΒΆ
uuid.py: Thin wrapper around python uuid (universally unique identifier) module.
Functions
Returns boolean indicating whether uuid_obj seems to be a uuid, in any allowed form. |
|
Returns True if the 2 uuid objects are for the same id; False otherwise. |
|
Returns a new uuid based on the time (to 100ns) & MAC address option of the iso standard. |
|
Returns standard hexadecimal string for uuid; same as str(uuid_obj). |
|
Subsequent calls to new_uid() will produce standard uuid values (default behaviour). |
|
Causes subsequent calls to new_uid() to produce integer sequence starting from successor to seed. |
|
Returns the uuid as a 16 byte bytes sequence; same as uuid_obj.bytes. |
|
Returns the uuid as a 128 bit int; same as uuid_obj.int. |
|
Returns a uuid object for the given uuid int. |
|
Returns a uuid object for the given uuid string; hyphens are ignored. |
|
Returns True if the uuid is in the list of uuids. |
|
Returns an integer string rendering of the time element of the uuid. |