{"id":47444139,"url":"https://github.com/JuliaCloud/AWSS3.jl","last_synced_at":"2026-04-06T13:00:58.875Z","repository":{"id":37602937,"uuid":"48793638","full_name":"JuliaCloud/AWSS3.jl","owner":"JuliaCloud","description":"AWS S3 Simple Storage Service interface for Julia.","archived":false,"fork":false,"pushed_at":"2025-05-22T14:02:37.000Z","size":1977,"stargazers_count":50,"open_issues_count":94,"forks_count":35,"subscribers_count":7,"default_branch":"master","last_synced_at":"2026-02-20T04:36:12.176Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JuliaCloud.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2015-12-30T09:37:18.000Z","updated_at":"2025-11-05T16:08:25.000Z","dependencies_parsed_at":"2024-03-26T03:26:55.101Z","dependency_job_id":"fd72bb19-3767-4670-a9f0-d2d752c61b85","html_url":"https://github.com/JuliaCloud/AWSS3.jl","commit_stats":{"total_commits":464,"total_committers":36,"mean_commits":12.88888888888889,"dds":0.7737068965517242,"last_synced_commit":"76b3a2821fc4fd0c251e7b80497002eb67a591e0"},"previous_names":[],"tags_count":77,"template":false,"template_full_name":null,"purl":"pkg:github/JuliaCloud/AWSS3.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaCloud%2FAWSS3.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaCloud%2FAWSS3.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaCloud%2FAWSS3.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaCloud%2FAWSS3.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JuliaCloud","download_url":"https://codeload.github.com/JuliaCloud/AWSS3.jl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaCloud%2FAWSS3.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31473271,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-06T08:36:52.050Z","status":"ssl_error","status_checked_at":"2026-04-06T08:36:51.267Z","response_time":112,"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":"2026-03-23T06:00:59.902Z","updated_at":"2026-04-06T13:00:58.865Z","avatar_url":"https://github.com/JuliaCloud.png","language":"Julia","funding_links":[],"categories":["Cloud Security"],"sub_categories":["Probabilistic Data Structures"],"readme":"# AWSS3\n\nAWS S3 Interface for Julia\n\n[![CI](https://github.com/JuliaCloud/AWSS3.jl/actions/workflows/CI.yaml/badge.svg?branch=master)](https://github.com/JuliaCloud/AWSS3.jl/actions/workflows/CI.yaml?query=branch%3Amaster)\n[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle)\n[![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet)](https://github.com/SciML/ColPrac)\n\n**Installation**: at the Julia REPL, `using Pkg; Pkg.add(\"AWSS3\")`\n\n**Documentation**: [![][docs-stable-img]][docs-stable-url] [![][docs-latest-img]][docs-latest-url]\n\n[docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg\n[docs-latest-url]: http://juliacloud.github.io/AWSS3.jl/dev/\n\n[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg\n[docs-stable-url]: http://juliacloud.github.io/AWSS3.jl/stable/\n\n## Example\n```julia\nusing AWSS3\nusing AWS # for `global_aws_config`\n\naws = global_aws_config(; region=\"us-east-2\") # pass keyword arguments to change defaults\n\ns3_create_bucket(aws, \"my.bucket\")\n\n# if the config is omitted it will try to infer it as usual from AWS.jl\ns3_delete_bucket(\"my.bucket\")\n\np = S3Path(\"s3://my.bucket/test1.txt\")  # provides an filesystem-like interface\nwrite(p, \"some data\")\n\nread(p, byte_range=1:4)  # returns b\"some\"\n\nresponse = write(p, \"other data\"; returns=:response) # returns the raw `AWS.Response` on writing to S3\nparsed_response = write(p, \"other data\"; returns=:parsed) # returns the parsed `AWS.Response` (default)\nversioned_path = write(p, \"other data\"; returns=:path) # returns the `S3Path` written to S3, including the version ID\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJuliaCloud%2FAWSS3.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJuliaCloud%2FAWSS3.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJuliaCloud%2FAWSS3.jl/lists"}