hash_all_users_passwords.py 238 B

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