Anvil Firebase SDK is a wrapper for the Firebase Javascript V9 Library.
Getting started with Firebase for the web - Firebase Fundamentals
Copy this Third Party dependency token into your dependencies.
U6TW3CSF6MGJ2CZF
Note: Never depend on the development or published branch of the dependency, always use a fixed version. Before upgrading to another version test out the new dependency version in a testing environment. Its almost always best to use the latest version.
Clone Link:
from firebase.firebase_client import initialize_app
#you get this config dict from your firebase console -> settings-> my apps
project_config = {
'apiKey': "",
'authDomain': "",
'projectId': "",
'storageBucket': "",
'messagingSenderId': "",
'appId': "",
'measurementId': ""
}
initialize_app(project_config )
Import the Authentication Package
from firebase.firebase_client import authentication