{"id":41169356,"url":"https://github.com/jobstoit/s3io","last_synced_at":"2026-02-13T06:44:30.181Z","repository":{"id":235012137,"uuid":"789902676","full_name":"jobstoit/s3io","owner":"jobstoit","description":"Golang native read/writes on s3 objects","archived":false,"fork":false,"pushed_at":"2026-01-21T05:56:23.000Z","size":261,"stargazers_count":5,"open_issues_count":1,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-21T17:35:23.076Z","etag":null,"topics":["files","go","golang","golang-package","object-storage","s3"],"latest_commit_sha":null,"homepage":"https://pkg.go.dev/github.com/jobstoit/s3io/v3","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jobstoit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["jobstoit"]}},"created_at":"2024-04-21T21:23:00.000Z","updated_at":"2026-01-21T05:56:26.000Z","dependencies_parsed_at":"2024-11-04T09:22:18.826Z","dependency_job_id":"9bca2b3f-35dd-4f9e-8c47-7b06d160aee5","html_url":"https://github.com/jobstoit/s3io","commit_stats":null,"previous_names":["jobstoit/s3io"],"tags_count":28,"template":false,"template_full_name":null,"purl":"pkg:github/jobstoit/s3io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jobstoit%2Fs3io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jobstoit%2Fs3io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jobstoit%2Fs3io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jobstoit%2Fs3io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jobstoit","download_url":"https://codeload.github.com/jobstoit/s3io/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jobstoit%2Fs3io/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28669435,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T19:36:09.361Z","status":"ssl_error","status_checked_at":"2026-01-22T19:36:05.567Z","response_time":144,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["files","go","golang","golang-package","object-storage","s3"],"created_at":"2026-01-22T19:39:03.798Z","updated_at":"2026-01-22T19:39:03.875Z","avatar_url":"https://github.com/jobstoit.png","language":"Go","funding_links":["https://github.com/sponsors/jobstoit"],"categories":[],"sub_categories":[],"readme":"# S3IO\n\n[![Go Reference](https://pkg.go.dev/badge/github.com/jobstoit/s3io/v3.svg)](https://pkg.go.dev/github.com/jobstoit/s3io/v3)\n[![Go Report Card](https://goreportcard.com/badge/github.com/jobstoit/s3io/v3)](https://goreportcard.com/report/github.com/jobstoit/s3io/v3)\n\nAn abstraction layer on top of the s3 sdk to do io read/write opperations on s3 objects.\nThe s3io reader and writer stream the objects from and to your s3 instance while being memory efficient.\n\n```go\n// Note the \"WithBucket...\" are options\nbucket, err := s3io.Open(ctx, \"my-bucket-name\", s3io.WithBucketCredentials(accessKey, secretKey))\nif err != nil {\n  return err\n}\n\n// Note the \"WithWriter...\" are options specifically for this writer session\nwriter := bucket.Put(ctx, \"path/to/object.txt\", s3io.WithWriterRetries(3))\ndefer writer.Close() // makes sure your upload won't keep hanging\n\nif _, err := io.WriteString(writer, \"Hello world!\"); err != nil {\n  return err\n}\n\nif err := writer.Close(); err != nil {\n  return err \n}\n\nreader := bucket.Get(ctx, \"path/to/object.txt\")\n\n_, err := io.Copy(os.Stdout, reader)\n...\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjobstoit%2Fs3io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjobstoit%2Fs3io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjobstoit%2Fs3io/lists"}