{"id":24208625,"url":"https://github.com/nextml-code/fast-s3","last_synced_at":"2026-01-20T06:01:36.776Z","repository":{"id":173949796,"uuid":"651536828","full_name":"nextml-code/fast-s3","owner":"nextml-code","description":null,"archived":false,"fork":false,"pushed_at":"2024-08-13T11:56:16.000Z","size":154,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-09-22T14:32:56.772Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nextml-code.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2023-06-09T13:08:22.000Z","updated_at":"2024-08-13T11:55:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"4d5f0034-eaf8-4e8c-a988-23bb578c1853","html_url":"https://github.com/nextml-code/fast-s3","commit_stats":null,"previous_names":["nextml-code/fast-s3"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/nextml-code/fast-s3","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextml-code%2Ffast-s3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextml-code%2Ffast-s3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextml-code%2Ffast-s3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextml-code%2Ffast-s3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nextml-code","download_url":"https://codeload.github.com/nextml-code/fast-s3/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nextml-code%2Ffast-s3/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28597087,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"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":[],"created_at":"2025-01-14T01:17:36.841Z","updated_at":"2026-01-20T06:01:36.760Z","avatar_url":"https://github.com/nextml-code.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Download/upload images from/to s3 very quickly\n\n## Setup\n\n```\npoetry install\n```\n\n## Usage\n\nDownload image files\n\n```python\nfrom PIL import Image\nfrom fast_s3 import Fetcher, Status\n\n\nlarge_list_of_image_paths = [...]\n\nfetcher = Fetcher(\n    paths=large_list_of_image_paths,\n    endpoint_url=\"https://s3.my-path-to-s3\",\n    aws_access_key_id=\"my-key-id\",\n    aws_secret_access_key=\"my-secret-key\",\n    region_name=\"my-region\",\n    bucket_name=\"my-bucket\",\n    ordered=True,  # returns files in the same order as paths\n    buffer_size=1024,\n    n_workers=32,\n)\n\nfor file in fetcher:\n    if file.status != Status.error:\n        Image.open(file.buffer).save(file.path)\n\nfetcher.close()\n```\n\nUpload files\n\n```python\nfrom fast_s3 import Uploader\n\n\nlarge_list_of_files = [...]\nlarge_list_of_paths = [...]\n\nuploader = Uploader(\n    endpoint_url=\"https://s3.my-path-to-s3\",\n    aws_access_key_id=\"my-key-id\",\n    aws_secret_access_key=\"my-secret-key\",\n    region_name=\"my-region\",\n    bucket_name=\"my-bucket\",\n)\n\nuploader.queue_upload(\n    source=large_list_of_files,\n    destination=large_list_of_paths,\n)\nuploader.await_upload()\nuploader.close()\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnextml-code%2Ffast-s3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnextml-code%2Ffast-s3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnextml-code%2Ffast-s3/lists"}