Generate Unique Strings (like a GUID) in python/common

You could also use this .NET function (which is probably what the Rhino/GH peeps do I imagine):


import System

g = System.Guid.NewGuid()

print g

1 Like