1

I am trying to read csv from google drive. when I run those lines

from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive

it says:

cannot import name 'mtls' from 'google.auth.transport (C:\Users\RAFI\anaconda3\lib\site-packages\google\auth\transport_init_.py)

rafine
  • 361
  • 3
  • 18

1 Answers1

0

Installing mtls and googletrans modules solved this for me.

pip install mtls
pip install googletrans
kprs
  • 1