DEV Community

ashrafZolkopli
ashrafZolkopli

Posted on

2

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)))   

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay