I need to generate a unique ID based on a random value.
|
|
|||||||||
|
|
|
Here ya go:
|
||
|
|
|
|
Perhaps uuid.uuid4()? See: uuid. |
||||
|
|
|
You might want Python's UUID functions: |
||
|
|
|
|
Maybe the uuid module? |
||
|
|
|
|
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. |
||||
|
|
|
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 |
||||||||
|
|
|
|
||
|
|
