fkget download files from the internet and S3
To be Added support for GCS, Azure Blob Storage, and FTP
fkget is a simple library for downloading files using reqwest. It is designed to be used in a multithreaded environment.
```rust use fkget::fk_get;
async fn main() { let url = "https://speed.hetzner.de/100MB.bin".tostring(); fkget::download_file(&url).await.unwrap();
//Download S3 file
url = "s3://bucket/key".to_string();
fk_get::download_file(&url).await.unwrap();
}
```
bash
fkget https://speed.hetzner.de/100MB.bin
bash
fkget s3://bucket/jeykey
MIT
https://8gwifi.org