hash_all_users_passwords.py 218 B

123456
  1. import model
  2. if __name__ == '__main__':
  3. if input('Are you sure you want to hash all users passwords? (type in "yes" or something else):') == 'yes':
  4. model.hash_all_users_passwords()
  5. model.cleanup()