Create new GUID

Is there a way to create a new GUID? Via python I can do something like this:

python -c 'import uuid; print(uuid.uuid4())'

Currently there are probably only two ways. Either you copy your above command into an Execute Command Node or you do it in a Function-Node and use code like this:

I tested the execute command but python is missing in the docker image. The JS function I already know but as you can read in the StackOverflow thread it does not generate perfect GUID’s since the random function is JS is not good enough. This is why I’m searching for a better way since we can’t afford to get the same GUID twice :frowning: