Best Django Secret generator

ashraf_zolkopli

ashrafZolkopli

Posted on April 6, 2020

Best Django Secret generator

Hey Guys,

Its been a while since I last post something...

So today I thought why not share one of the best Django secret generator I had seen.

anyway the gist of the video is that with python there is a module called secrets that will generate random enough that its hard to guess... you may want to go through the whole series.. but in case you just want the code

import secrets
import string
print ("".join(secrets.choice(string.digits + string.ascii_letters + string.punctuation) for i in range (100)))   
💖 💪 🙅 🚩
ashraf_zolkopli
ashrafZolkopli

Posted on April 6, 2020

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Best Django Secret generator
python Best Django Secret generator

April 6, 2020