How do I create a GUID in Python that is platform independent? I here there is a method using ActivePython on Windows but it's Windows only because it uses COM. Is there a method using plain Python?
|
|
"The uuid module, in Python 2.5 and up, provides RFC compliant UUID generation. See the module docs and the RFC for details." http://mail.python.org/pipermail/python-list/2007-November/484820.html |
||||||||||
|
|
|
If you're using Python 2.5 or later, the uuid module is already included with the Python standard distribution. Ex:
|
||
|
|
|
|
Pre python 2.5 you could use something like this:
|
||
|
