How to read and update a field in JSON file that's in Google cloud using Python script. I've tried using
with open(filepath, 'r')
Where filepath was a gs path location
gs://bucket-name/path
But I was getting FileNotFoundError
.
Is there any other way to read and update a field in JSON that's in Google cloud using Python?