Hi there I\'m new in python. I would like to implement the listener on my Firebase DB. When I change one or more parameters on the DB my Python code have to do something. Ho
You can use Pyrebase, which is a python wrapper for the Firebase API.
Pyrebase
more info here:
https://github.com/thisbejim/Pyrebase
To retrieve data you need to use val(), example:
val()
users = db.child("users").get() print(users.val())