import pyrebase
config = {'apiKey': "AIzaSyCIkjXwfFCXuWavGkiy39MEx8aG9QsRpxE",
'authDomain': "sparkwebdevsujit.firebaseapp.com",
'projectId': "sparkwebdevsujit",
'storageBucket': "sparkwebdevsujit.appspot.com",
'messagingSenderId': "2928150243",
'appId': "1:2928150243:web:cdee0458e5da8b3e8e27d6"}
firebase = pyrebase.initialize_app(config)
# db = firebase.database()
auth = firebase.auth()
# storage = firebase.storage()
email = input("email : ")
password = input("password : ")
auth.sign_in_with_email_and_password(email,password)
i am trying simple signin though firebase and it is giving error which is
File "c:\Users\sujit\Desktop\firebase\main.py", line 10, in <module>
firebase = pyrebase.initialize_app(config)
File "C:\Users\sujit\AppData\Local\Programs\Python\Python310\lib\site-packages\pyrebase\pyrebase.py", line 28, in initialize_app
return Firebase(config)
File "C:\Users\sujit\AppData\Local\Programs\Python\Python310\lib\site-packages\pyrebase\pyrebase.py", line 36, in __init__
self.database_url = config["databaseURL"]
KeyError: 'databaseURL
i dont know what i did wrong i followed letter bt letter