Files
Iliyan Angelov 34b4c969d4 updates
2025-11-19 12:27:01 +02:00

8 lines
209 B
Python

# Use secrets module if available (Python version >= 3.6) per PEP 506
try:
from secrets import SystemRandom # type: ignore
except ImportError:
from random import SystemRandom
random = SystemRandom()