I need to generate a unique ID based on a random value.

link|improve this question

24% accept rate
2  
Can you be more specific on what kind of unique id. Does it need to be a number? or can it contain letters? Give some examples of the type of id. – MitMaro Jul 31 '09 at 2:54
1  
-1: vague....... – S.Lott Jul 31 '09 at 10:10
feedback

7 Answers

Perhaps uuid.uuid4()? See: uuid.

link|improve this answer
5  
Watch out, the library underlying that module is buggy and tends to fork a process that keeps FDs open. That's fixed in newer versions, but most people probably don't have that yet, so I generally avoid this module. Caused me major headaches with listen sockets... – Glenn Maynard Jul 31 '09 at 3:14
1  
@Glenn: Any more details on which version is buggy? I'm using this in production code (and about to roll out to more uses of it in a newer release). Now I'm scared! – Matthew Schinckel Nov 6 '10 at 7:38
@Matthew: I don't know if it's since been fixed, but the uuid backend that use uuidlib forked without closing FDs, so the TCP sockets I had open at the time would never be closed and I couldn't reopen the port later. I'd have to manually kill uuidd as root. I worked around this by setting uuid._uuid_generate_time and uuid._uuid_generate_random to None so the uuid module never used the native implementation. (That should really be an option anyway; generating V4 random UUIDs causing a daemon to be started is completely unnecessary.) – Glenn Maynard Nov 6 '10 at 11:22
feedback

You might want Python's UUID functions:

21.15. uuid — UUID objects according to RFC 4122

link|improve this answer
feedback

Here ya go:

import os
id = os.urandom(32)
link|improve this answer
2  
Or binascii.hexlify(os.urandom(16)), if you want the classical hex ID. – alexinblue Nov 26 '11 at 16:59
feedback
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|improve this answer
feedback

Maybe the uuid module?

link|improve this answer
feedback

unique and random are mutually exclusive. perhaps you want this?

import random
def uniqueid():
    seed = random.getrandbits(32)
    while True:
       yield seed
       seed += 1

Usage:

unique_sequence = uniqueid()
id1 = unique_sequence()
id2 = unique_sequence()
id3 = unique_sequence()
ids = [unique_sequence() for dummy in range(1000)]

no two returned id is the same (Unique) and this is based on a randomized seed value

link|improve this answer
This isn't unique. If I start it twice, and generate a million values each time, the chances of a collision between the two runs is significant. I'd have to store the last "seed" each time to avoid that--and then there's no point to having the seed; it's just a sequence generator. Statistically unique IDs typically are generated from random data; at least one class of UUIDs works that way. – Glenn Maynard Jul 31 '09 at 4:38
It is unique so long as each unique sequence comes from only a single invocation of uniqueid. there is no guarantee of uniqueness across generators. – TokenMacGuy Jul 31 '09 at 5:14
With that condition, even a counter is unique. – Glenn Maynard Jul 31 '09 at 7:17
is there something wrong with generating unique ID's by means of a counter? this is a common practice in databse design. – TokenMacGuy Jul 31 '09 at 17:30
Your usage wouldn't work that way (at least not in 2.7): you'd need to call unique_sequence.next(). – Gerald Senarclens de Grancy Aug 24 '11 at 19:30
feedback
import time
def new_id():
    time.sleep(0.000001)
    return time.time()

On my system, time.time() seems to offer 6 significant figures after the decimal point. With a brief sleep it should be guaranteed unique with at least a moderate amount of randomness down in the last two or three digits.

You could hash it as well if you're worried.

link|improve this answer
1  
Hashing it won't make it any more unique, and there's a strong chance of a collision eventually if more than one process is doing this--anywhere, not even just on the same machine. This is no way to generate unque IDs. – Glenn Maynard Jul 31 '09 at 4:24
1  
Hashing will stop people guessing by incrementing. It'll be unique if there's only one thread handing out IDs, I think. A lot depends on what the IDs are for. (and why they have to be both unique and random) – John Fouhy Jul 31 '09 at 5:45
feedback

Your Answer

 
or
required, but never shown

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