Spaces:
Sleeping
Sleeping
File size: 311 Bytes
412a390 dc07ef2 412a390 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# -*- coding: utf-8 -*-
import pickle
from pathlib import Path
import streamlit_authenticator as stauth
names = ['admin']
usernames = ['admin']
passwords = ['xxxxxxxx']
hashed_passwords = stauth.Hasher((passwords)).generate()
with open('hashed_password.pkl','wb') as f:
pickle.dump(hashed_passwords, f) |