{"id":51294306,"url":"https://github.com/bhftbootcamp/awscs3.jl","last_synced_at":"2026-06-30T13:01:47.233Z","repository":{"id":355603169,"uuid":"1228755297","full_name":"bhftbootcamp/AWSCS3.jl","owner":"bhftbootcamp","description":"Julia wrapper for aws-c-s3","archived":false,"fork":false,"pushed_at":"2026-05-04T13:07:56.000Z","size":52,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-04T13:32:58.458Z","etag":null,"topics":["aws-c-s3","s3"],"latest_commit_sha":null,"homepage":null,"language":"Julia","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/bhftbootcamp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","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":"2026-05-04T10:46:23.000Z","updated_at":"2026-05-04T12:58:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/bhftbootcamp/AWSCS3.jl","commit_stats":null,"previous_names":["bhftbootcamp/awscs3.jl"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/bhftbootcamp/AWSCS3.jl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhftbootcamp%2FAWSCS3.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhftbootcamp%2FAWSCS3.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhftbootcamp%2FAWSCS3.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhftbootcamp%2FAWSCS3.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bhftbootcamp","download_url":"https://codeload.github.com/bhftbootcamp/AWSCS3.jl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bhftbootcamp%2FAWSCS3.jl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34967635,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-30T02:00:05.919Z","response_time":92,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["aws-c-s3","s3"],"created_at":"2026-06-30T13:01:45.379Z","updated_at":"2026-06-30T13:01:47.206Z","avatar_url":"https://github.com/bhftbootcamp.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWSCS3.jl\n\n[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://bhftbootcamp.github.io/AWSCS3.jl/stable/)\n[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://bhftbootcamp.github.io/AWSCS3.jl/dev/)\n[![Build Status](https://github.com/bhftbootcamp/AWSCS3.jl/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/bhftbootcamp/AWSCS3.jl/actions/workflows/ci.yml?query=branch%3Amaster)\n[![Coverage](https://codecov.io/gh/bhftbootcamp/AWSCS3.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/bhftbootcamp/AWSCS3.jl)\n[![Registry](https://img.shields.io/badge/registry-Green-green)](https://github.com/bhftbootcamp/Green)\n\nAWSCS3 is a lightweight, high-performance Julia client for S3-compatible object storage (AWS S3, etc.). Built on the AWS C SDK for maximum throughput.\n\n## Installation\n\nIf you haven't installed our [local registry](https://github.com/bhftbootcamp/Green) yet, do that first:\n\n```\n] registry add https://github.com/bhftbootcamp/Green.git\n```\n\nTo install AWSCS3, simply use the Julia package manager:\n\n```julia\n] add AWSCS3\n```\n\n## Usage\n\nLet's look at some of the most used cases\n\n```julia\nusing AWSCS3\n\nclient = S3Client(\n    host = \"my_host\",\n    region = \"us-east-1\",\n    access_key = ENV[\"S3_ACCESS_KEY\"],\n    secret_key = ENV[\"S3_SECRET_KEY\"],\n)\n\nbucket_exists(client, \"my-bucket\") || create_bucket(client, \"my-bucket\")\n\nput_object(client, \"my-bucket\", \"demo/hello.txt\", \"Hello, World!\")\nput_object(client, \"my-bucket\", \"demo/data.bin\", UInt8[0x01, 0x02, 0x03, 0x04])\n\nbody = get_object(client, \"my-bucket\", \"demo/hello.txt\") |\u003e String\n\nfor obj in list_objects(client, \"my-bucket\"; prefix = \"demo/\")\n    println(\"$(obj.key) ($(obj.size) bytes)\")\nend\n\ncopy_object(client, \"my-bucket\", \"demo/hello.txt\", \"my-bucket\", \"demo/hello_copy.txt\")\ndelete_objects(client, \"my-bucket\", [\"demo/hello.txt\", \"demo/hello_copy.txt\", \"demo/data.bin\"])\n\nclose(client)\n```\n\n## Useful Links\n\n- [AWS C S3](https://github.com/awslabs/aws-c-s3) – underlying C library for S3 operations.\n\nPrebuilt binaries are downloaded automatically during installation. If a binary is not available for your platform, you can build the shim library from source:\n\n```bash\nbash deps/build_shim.sh\n```\n\n## Contributing\n\nContributions to AWSCS3 are welcome! If you encounter a bug, have a feature request, or would like to contribute code, please open an issue or a pull request on GitHub.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhftbootcamp%2Fawscs3.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbhftbootcamp%2Fawscs3.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhftbootcamp%2Fawscs3.jl/lists"}