#download #s3 #upload #bucket #python #turbo #uploading

turbolib

library for turbocharged S3 uploads and downloads

1 unstable release

0.3.3 Jul 31, 2022

#5 in #turbo

21 downloads per month

Custom license

16KB
265 lines

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?;

Dependencies

~29–42MB
~668K SLoC