uuid4() code example
Example 1: python generate uid
# Python3 code to generate the
# random id using uuid1()
import uuid
# Printing random id using uuid1()
print ("The random id using uuid1() is : ",end="")
print (uuid.uuid1())
Example 2: uuidv4
import { v4 as uuid_v4 } from "uuid";
uuid_v4()