Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 320 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 320 Bytes

Airflow

Airflow

Create Fernetkey

Install cryptography for python

pip install --upgrade pip
pip install cryptography

Run pythonscript to create a fernetkey

from cryptography.fernet import Fernet

fernet_key = Fernet.generate_key()
print(fernet_key.decode())  # Output the generated key