mirror of
https://git.proxmox.com/git/systemd
synced 2025-12-27 01:47:28 +00:00
10 lines
135 B
Python
Executable File
10 lines
135 B
Python
Executable File
#!/usr/bin/python3
|
|
|
|
import uuid
|
|
import systemd.id128
|
|
|
|
u = systemd.id128.randomize()
|
|
|
|
assert isinstance(u, uuid.UUID)
|
|
print('UUID:', u)
|