#download #internet #file #url #networking #progress-bar

netget

使用Rust代码轻松下载文件,同时也很时尚!

1 个不稳定版本

0.1.2 2023年11月24日
0.1.1 2023年11月24日
0.1.0 2023年11月23日

#41 in #internet


2 crate 中使用

MIT 许可证

6KB
67

NetGet

NetGet是一个用于从互联网下载文件的库,它还支持自定义进度条样式!

示例

fn main() {
    let url = "https://releases.ubuntu.com/22.04.3/ubuntu-22.04.3-desktop-amd64.iso";
    let destination = std::env::current_dir().unwrap().display().to_string(); // The destination path for the file.

    netget::download_file(url, &destination, &netget::ProgressBarConfig::default()).unwrap();
}

依赖关系

~7–22MB
~286K SLoC