Python Random Password Generator (One Liner). #python #password
python -c "from random import choice; print ''.join([choice('abcdefghijklmnopqrstuvwxyz0123456789%^*(-_=+)') for i in range(32)])" |
This comment has been minimized.
This comment has been minimized.
Updated for python 3.6
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Can you pull in https://gist.github.com/kaytwo/62049fe07eb5b68fbd9e ? This is my top google result for python password one liner and uppercase letters are required a few places.