Quilt allows you to create, read, and write packages both on your local filesystem and on S3 buckets configured to work with Quilt3. For convenience, we provide a simple API for working with S3 buckets that serves as an alternative to boto3.
This requires that the bucket is configured to work with Quilt 3. Unless this bucket is public, you will also first need to log into the catalog that controls this bucket:
# only need to run this once# ie quilt3.config('https://your-catalog-homepage/')quilt3.config('https://open.quiltdata.com/')# follow the instructions to finish loginquilt3.login()
Introspecting a bucket
To see the contents of a Bucket, use keys:
# returns a list of objects in the bucketb.keys()
Reading from a bucket
To download a file or folder from a bucket use fetch:
# put a file to a bucketb.put_file("read.md", "./read.md")# or put everything in a directory at onceb.put_dir("stuff", "./aleksey")
Note that set operations on a Package are put operations on a Bucket.
Deleting objects in a bucket
# always be careful when deleting# delete a fleb.delete("read.md")# delete a directoryb.delete_dir("stuff/")
Searching in a bucket
You can search for individual objects using search.
Note that this feature is currently only supported for buckets backed by a Quilt catalog instance. Before performing a search you must first configure a connection to that instance using quilt3.config.
# for examplequilt3.config(navigator_url="https://open.quiltdata.com")