Created
October 30, 2017 09:27
-
-
Save vitorfs/9e09b4332ece80cbf29f233c8872393c to your computer and use it in GitHub Desktop.
Revisions
-
vitorfs created this gist
Oct 30, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ from django.utils.crypto import get_random_string chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)' random_string = get_random_string(50, chars) print(random_string)