liormizr / s3path

s3path is a pathlib extension for AWS S3 Service
Apache License 2.0
206 stars 39 forks source link

:sparkles: Add a get_presigned_url method for GET operations #129

Closed gabrieldemarmiesse closed 1 year ago

gabrieldemarmiesse commented 1 year ago

Closes #125

An improvement that could be done later is to allow to change the method, for example by adding an argument mode: Literal["r", "w"] = "r" . Using "w" would allow a POST and thus an upload. GET would stay the default as it's the most used mode.