1 unstable release
0.3.3 | Jul 31, 2022 |
---|
#7 in #turbo
16KB
265 lines
turbolib
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?;
Dependencies
~29–42MB
~668K SLoC