Answers for "flask secret key generator from terminal"

3

flask secret key generator

# The secret key is needed to keep the client-side sessions secure.
# It's used for flask applications
# You can generate some random key as below:

>>> import os
>>> os.urandom(24)
'xfd{Hxe5<x95xf9xe3x96.5xd1x01O<!xd5xa2xa0x9fR"xa1xa8'

# Just take that key and copy/paste it into your config file

SECRET_KEY = 'xfd{Hxe5<x95xf9xe3x96.5xd1x01O<!xd5xa2xa0x9fR"xa1xa8'
Posted by: Guest on August-14-2020

Python Answers by Framework

Browse Popular Code Answers by Language