I need to generate a unique ID based on a random value.
feedback
|
|
Perhaps uuid.uuid4()? See: uuid. | |||||||||||
feedback
|
|
You might want Python's UUID functions: | |||
|
feedback
|
|
Here ya go:
| |||||
feedback
|
| |||
|
feedback
|
|
unique and random are mutually exclusive. perhaps you want this?
Usage:
no two returned id is the same (Unique) and this is based on a randomized seed value | |||||||||||
feedback
|
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. | |||||||||
feedback
|