Working with a Bucket
Connecting to a bucket
import quilt3
b = quilt3.Bucket("s3://my-bucket")import quilt3
quilt3.config('https://your-catalog-homepage/') # only need to run this once
quilt3.login() # follow the instructions to finish loginIntrospecting a bucket
$ python
>>> b.keys()
<<< [...a list of objects in the bucket...]Reading from a bucket
Writing to a bucket
Deleting objects in a bucket
Searching in a bucket
Last updated
Was this helpful?

