pyrebase

When downloading pyrebase on my M1 Mac, RSA throws an error. How can I fix this?

When downloading pyrebase on my M1 Mac, RSA throws an error. How can I fix this? Question: When downloading pyrebase for flask development on Mac with M1 chip in a Rosetta terminal with the command: pip3 install pyrebase I cannot install rsa. I keep receiving the error: Using cached rsa-4.7.1.tar.gz (38 kB) ERROR: Package ‘rsa’ …

Total answers: 2

Python Pyrebase Config

Python Pyrebase Config Question: When I’m trying to run my code: import pyrebase firebaseConfig = { "apiKey": "xxxxxx", "authDomain": "xxxxxx", "projectId": "xxxxxx", "storageBucket": "xxxxxxx", "serviceAccount": "xxxxxxxxx" } firebase_storage = pyrebase.initialize_app(firebaseConfig) storage = firebase_storage.storage() storage.child("uploads").put("xxxxxxx") I’m getting an error: self.database_url = config["databaseURL"] KeyError: ‘databaseURL’ I don’t know what to do. Can someone help me? Asked By: …

Total answers: 4

List all users from Firebase Authentication

List all users from Firebase Authentication Question: I am currently using the Pyrebase wrapper to get information (such as their email and created date) of all users. I tried looking through the documentation and cross reference it to Pyrebase documentation however i don’t seem to get what i’m looking for. Currently i have tried this: …

Total answers: 2