s3gof3r
s3gof3r copied to clipboard
Fast, concurrent, streaming access to Amazon S3, including gof3r, a CLI. http://godoc.org/github.com/rlmcpherson/s3gof3r
Use AWS_REGION environment variable if it is set. Without this change, trying to put to a bucket in a region other than us-east-1 results in something like: > gof3r error:...
I try to use this library with Minio and I get `panic: can't find endpoint region` My code: ``` s3Client := s3gof3r.New(s.Config.Endpoint, s3gof3r.Keys{ AccessKey: "my-access-key", SecretKey: "my-secret-key", }) bucket :=...
adapt to other OSS endpoint
Hello, I am currently writing a webservice to centralize the upload to S3 for different applications. This webservice is using s3gof3r for the upload and download. I run some stress...
Hi, I am using s3gof3r to download [yfcc100m ](http://multimediacommons.org/)with their instructi ons: `gof3r get -b multimedia-commons -k images/ -p ./`. `gof3r get -b multimedia-commons -k images/ -p ./` gof3r error:...
Keys containing the character Plus ("+"), fail the md5 signature check. For example a file with key: 5-ID+Rub+IgG+II+30221_01_2002_FR.docx ``` gof3r error: 403: "The request signature we calculated does not match...
Hi, for the Julia wrapper for s3gof3r, I set up Julia's binary builder, which builds for many platforms automatically: https://github.com/JuliaBinaryWrappers/s3gof3r_jll.jl/releases Feel free to use them / point to them :)...
The current regex prohibits using third-party (non-aws) services which implement the S3 API https://github.com/rlmcpherson/s3gof3r/blob/864ae0bf7cf2e20c0002b7ea17f4d84fec1abc14/s3gof3r.go#L21 Is there a reason to limit gof3r to strictly amazon services? Or could the regex be...
I am trying to use gof3r in my docker image and running the container on AWS ECS. The ECS has proper IAM set to access S3 bucket, hence I expect...