"""Generate fernet key module.""" from cryptography.fernet import Fernet fernet_key = Fernet.generate_key() print(fernet_key.decode())