Skip to content

Instantly share code, notes, and snippets.

@berlotto
Created April 20, 2015 01:38
Show Gist options
  • Save berlotto/c861e95076b878c2786d to your computer and use it in GitHub Desktop.
Save berlotto/c861e95076b878c2786d to your computer and use it in GitHub Desktop.
Generate tokens in Python
#http://wyattbaldwin.com/2014/01/09/generating-random-tokens-in-python/
import os
import hashlib
print hashlib.sha1(os.urandom(128)).hexdigest()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment