ошибка при импорте модуля в python - PullRequest
0 голосов
/ 22 ноября 2018

pip install google-auth

try: 
    from  google.auth.transport import requests as GoogleRequest
    print('Google Request include')
except:
    print('Google Request NOT include')

try: 
    from google.oauth2 import id_token as GoogleToken
    print('Google Token include')
except:
    print('Google Token NOT include')

Python: 2.7 Я установил и импортировал модуль в файл, но получил этот вывод

Ссылка на модуль https://google -auth.readthedocs.io/en/latest/reference/google.auth.html

Google Request NOT include
Google Token include
Google Request NOT include
Google Request include
Google Token include
Google Token include

почему?Пожалуйста, помогите мне

...