I am working on a project with both Node.js and Python codebases, each reading cloud storage objects via URIs (gs://bucket/object or https://storage.googleapis.com/...).
Although it is simple to work around this limitation, is there any plan to support public URLs (https://storage.googleapis.com/...) in the Python implementation as well? This would make the two seemingly similar APIs more consistent. I can make PR if it sounds good, as it seems trivial to implement.
Hi,
I am working on a project with both Node.js and Python codebases, each reading cloud storage objects via URIs (
gs://bucket/object
orhttps://storage.googleapis.com/...
).I noticed that the JavaScript implementation supports both URI schemes, but the Python implementation only supports
gs://
URIs.Although it is simple to work around this limitation, is there any plan to support public URLs (
https://storage.googleapis.com/...
) in the Python implementation as well? This would make the two seemingly similar APIs more consistent. I can make PR if it sounds good, as it seems trivial to implement.