vote up 14 vote down star
3

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?

flag

3 Answers

vote up 24 vote down check

"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

link|flag
2  
Ah, fantastic. During my initial search I had looked for 'GUID' instead of 'UUID'. Thanks! :) – Jonathon Watney Feb 10 at 23:56
hah! beat me to it by mere seconds :-D – Jay Feb 10 at 23:57
the link is broken... – deostroll Nov 14 at 18:44
fixed link, thanks – Stuart Dunkeld Nov 15 at 13:25
vote up 15 vote down

If you're using Python 2.5 or later, the uuid module is already included with the Python standard distribution.

Ex:

>>> import uuid
>>> uuid.uuid1()
UUID('5a35a426-f7ce-11dd-abd2-0017f227cfc7')
link|flag
vote up 3 vote down

Pre python 2.5 you could use something like this:

def guid( *args ):
    """
    Generates a universally unique ID.
    Any arguments only create more randomness.
    """
    t = long( time.time() * 1000 )
    r = long( random.random()*100000000000000000L )
    try:
        a = socket.gethostbyname( socket.gethostname() )
    except:
        # if we can't get a network address, just imagine one
        a = random.random()*100000000000000000L
    data = str(t)+' '+str(r)+' '+str(a)+' '+str(args)
    data = hashlib.md5(data).hexdigest()

    return data
link|flag
Just a note: hashlib exists since Python 2.5. So your pre Python 2.5 code should use data = md5.new(data).hexdigest() instead of hashlib. – Catalin Iacob Nov 5 at 15:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.