turbolib 0.3.3

library for turbocharged S3 uploads and downloads
Documentation

turbolib CI

turbolib is a library for uploading and downloading many files to AWS S3 quickly. It's used as a backend for a cli tool called turbo and for a python library called turbos3-py

Usage

turbolib exposes two functions

  • downloader
  • uploader

These are used to download and upload.

E.g. to download an entire bucket (e.g. my_bucket) into a local directory called data

use turbolib::{uploader, downloader};


downloader(my_bucket.into(), "data'.into(), None).await?;

you can also use regex filters, i.e. to download files that start end with ".txt"

use turbolib::{uploader, downloader};


downloader(my_bucket.into(), "data'.into(), Some("*.txt).into())).await?;