Попытка настроить pyrebase

В настоящее время у меня работает этот скрипт Python:

import pyrebase

# Config the firebase
# Create a stream
# Attatch the streamHandler
# Push the data to the firebase after analysis

config = {
  "apiKey": "Yl6***************OigD",
  "authDomain": "********.firebaseapp.com",
  "databaseURL": "https://****.firebaseio.com",
  "storageBucket": "*****.appspot.com",
  "serviceAccount": "/Users/ndh/Desktop/ConditioningMaintainanceAnalysis/**************.json"
}

firebase = pyrebase.initialize_app(config)
db = firebase.database()

Это дает мне следующую ошибку:

  File "/Users/ndh/anaconda3/lib/python3.6/site-packages/requests_toolbelt/auth/guess.py", line 6, in <module>
    from . import _digest_auth_compat as auth_compat, http_proxy_digest

  File "/Users/ndh/anaconda3/lib/python3.6/site-packages/requests_toolbelt/auth/_digest_auth_compat.py", line 17, in <module>
    class _HTTPDigestAuth(requests.auth.HTTPDigestAuth):

AttributeError: module 'requests' has no attribute 'auth'

Как я могу устранить эту ошибку?

0 ответов

Это сработало для меня

from Pyrebase import pyrebase

# просто посмотрите вашу библиотеку pyrebase в C:\Users\Agil\AppData\Local\Programs\Python\Python39\Lib\site-packages\Pyrebase

или библиотека pyrebase по умолчанию C:\Users\Agil\AppData\Local\Programs\Python\Python39\Lib\site-packages\Pyrebase-master

использовать

from Pyrebase-master import pyrebase
Другие вопросы по тегам