I have below code to read csv which is working from cloud function
import pandas as pd
file_name = "gs://" + "bucket_name" + "/" + name
print(file_name)
pd.read_csv(file_name, sep=',')
But above code is not working from local, throwing error
_request out of retries on exception: Cannot connect to host storage.googleapis.com:443 ssl:True
I have tried with ping and its resonding...
I have also set GOOGLE_APPLICATION_CREDENTIALS
set GOOGLE_APPLICATION_CREDENTIALS = project-name-xxxxx.json
Still its not working.
I am able to get list of files from google storage, but unable to read data through pandas
Any help
Thanks