I want to get the UID of the current logged in account on firebase using python. I know how do to this using javascript The code is
user = FirebaseAuth.getInstance().getCurrentUser()
uid = user.getUid()
but i'm trying to do it using the python-firebase module or the firebase.admin module. Any help would be appreciated.