I am trying to run a Python script on files in Google Cloud Storage (without using the google-cloud-storage package). I have Jupyter running on a VM instance. How can I access my files from Jupyter? this is an example of the code I'm trying to run:
fileName = 'OUTCAR'
with open(fileName) as file:
for line in file:
if 'free energy TOTEN' in line:
print(line)