Skip to content

Instantly share code, notes, and snippets.

View leqnam's full-sized avatar
:bowtie:
NLP Researcher

Nam Le leqnam

:bowtie:
NLP Researcher
View GitHub Profile
@leqnam
leqnam / secretkey.py
Created July 22, 2019 08:59 — forked from geoffalday/secretkey.py
How to generate a secret key with Python
# How to generate a secret key with Python
# via http://flask.pocoo.org/docs/quickstart/
import os
os.urandom(24)