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

原文链接:Best Django Secret generator

© 版权声明
THE END
喜欢就支持一下吧
点赞7 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容