You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 31, 2026. It is now read-only.
We upload jupyter notebook .ipynb file in google bucket. Whenever we make changes and upload the same file the changes are not being uploaded in the bucket. Looks like there is cache issue while uploading/patching the changed file. How to fix the issue??
We use the following code:
def upload_blob(self, file_to_upload):
""" Uploads file to the bucket"""
blob = self.bucket.blob(file_to_upload)
blob.upload_from_file(file_to_upload)
print('File {} uploaded to {}'.format(file_to_upload, file_to_upload))