Guest User

Untitled

a guest
Jan 17th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. import hashlib
  2. import time
  3.  
  4. def create_md5():
  5. m = hashlib.md5()
  6. m.update(bytes(str(time.time()), encoding='utf-8'))
  7. return m.hexdigest()
Add Comment
Please, Sign In to add comment