The uuid module provides builders for different types of universally unique identifiers. These are kinds of identifiers that you can use instead of auto-incrementing integers. They're intended to contain so much randomness that the chances of a collision between two uuids is very low.
There are different versions of uuids available: typically people use v4 UUIDs, which are fully random.
Migrated from folder: Modules/uuidExample