class main(..):
def init.:
super.
button = Button(on_release=self.on_click)
def on_click(self,screen,*args)
self.clear_widgets()
if screen == '2nd':
float = 2nd()
elif screen == '1st':
float = 1st()
I am using signup method:
user_signup = auth.create_user_with_email_and_password(email, password)
and my firebase rules are:
{
"rules": {
".read": false,
".write": false,
"$localId": {
".write": "auth.uid === $localId",
".read": "auth.uid === $localId"
}
hello guys,
I have this pattern for password validation (regex):
I want these rules to be applied:
Minimum 8 characters.
The alphabets must be between [a-z]
At least one alphabet should be of Upper Case [A-Z]
At least 1 number or digit between [0-9].
At least 1 character from [ _ or @ or $ ].
a
Hello guys, how can I get user auth refresh token and local id ?
--
https://mail.python.org/mailman/listinfo/python-list