import base64
import hashlib

password = '111111'
hash = hashlib.sha256(password.encode('utf-8')).digest()
print(base64.b64encode(hash).decode())