When using firebase with python
error contents
TypeError: __init__() got an unexpected keyword argument 'status'
I encountered the above error, so I will keep a record of the solution.
The following command is as follows.
Solution
pip uninstall requests
pip install requests==2.23.0
pip install firebase_admin
I was able to solve it with the above command. For 2.23.0, specify the latest version of requests.
This is a GitHub article that I referred to this time. Please refer to it for more details. https://github.com/firebase/firebase-admin-python/issues/262
We hope for your reference.