kivy,,, assigning global variable

2020-12-28 Thread Sadaka Technology
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()

Pyrebase auth

2020-12-26 Thread Sadaka Technology
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" }

using regex for password validation

2020-12-23 Thread Sadaka Technology
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

Python pyrebase user auth

2020-12-21 Thread Sadaka Technology
Hello guys, how can I get user auth refresh token and local id ? -- https://mail.python.org/mailman/listinfo/python-list