import secrets

# Generate a random secret key
secret_key = secrets.token_hex(32)

# Print it
print(secret_key)
