-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathfirebase_authentications.py
53 lines (34 loc) · 1.19 KB
/
firebase_authentications.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import pyrebase
import FirebaseScripts.CredentialsHelper as credentials
firebase = pyrebase.initialize_app(credentials.get_fireBase_credentials())
auth = firebase.auth()
def create_user_with_token():
token = auth.create_custom_token("enter the token here ")
print(token)
return token
def create_user_with_email(email, password):
user = auth.create_user_with_email_and_password(email, password)
print(user)
return user
def sign_in_user_with_email(email, password):
user = auth.sign_in_with_email_and_password(email=email, password=password)
print(user)
return user
def signIn_user_with_token(token):
user = auth.sign_in_with_custom_token(token)
print(user)
return user
def email_verifications(user):
verification = auth.send_email_verification(user["idToken"])
print(verification)
return verification
def password_reset(email):
password_rest = auth.send_password_reset_email(email)
print(password_rest)
return password_rest
def get_user_account_info(user):
info = auth.get_account_info(user["idToken"])
print(info)
return info
if __name__ == "__main__":
create_user_with_email("email here ", "password here ")