SkillAgentSearch skills...

AWSS3.jl

AWS S3 Simple Storage Service interface for Julia.

Install / Use

/learn @JuliaCloud/AWSS3.jl
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

AWSS3

AWS S3 Interface for Julia

CI Code Style: Blue ColPrac: Contributor's Guide on Collaborative Practices for Community Packages

Installation: at the Julia REPL, using Pkg; Pkg.add("AWSS3")

Documentation:

Example

using AWSS3
using AWS # for `global_aws_config`

aws = global_aws_config(; region="us-east-2") # pass keyword arguments to change defaults

s3_create_bucket(aws, "my.bucket")

# if the config is omitted it will try to infer it as usual from AWS.jl
s3_delete_bucket("my.bucket")

p = S3Path("s3://my.bucket/test1.txt")  # provides an filesystem-like interface
write(p, "some data")

read(p, byte_range=1:4)  # returns b"some"

response = write(p, "other data"; returns=:response) # returns the raw `AWS.Response` on writing to S3
parsed_response = write(p, "other data"; returns=:parsed) # returns the parsed `AWS.Response` (default)
versioned_path = write(p, "other data"; returns=:path) # returns the `S3Path` written to S3, including the version ID
View on GitHub
GitHub Stars51
CategoryDevelopment
Updated1mo ago
Forks35

Languages

Julia

Security Score

80/100

Audited on Feb 20, 2026

No findings