Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pop-os/async-fetcher
Rust crate for asynchronous file fetching, using optional fetching based on modified times and checksums
https://github.com/pop-os/async-fetcher
Last synced: 1 day ago
JSON representation
Rust crate for asynchronous file fetching, using optional fetching based on modified times and checksums
- Host: GitHub
- URL: https://github.com/pop-os/async-fetcher
- Owner: pop-os
- License: mpl-2.0
- Created: 2018-11-27T23:59:33.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-10T04:39:07.000Z (6 months ago)
- Last Synced: 2024-10-29T18:08:07.171Z (15 days ago)
- Language: Rust
- Homepage:
- Size: 2.75 MB
- Stars: 37
- Watchers: 12
- Forks: 15
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Asynchronous File Fetcher
This library provides an async service that can fetch multiple files concurrently, with multiple concurrent connections per file.
If the process is terminated, the downloads can be resumed. Once fetched, checksums can be validated in parallel.
The HTTP client used by the fetcher is `reqwest`.
## License
Licensed under the [Mozilla Public License 2.0](https://choosealicense.com/licenses/mpl-2.0/). Permissions of this copyleft license are conditioned on making available source code of licensed files and modifications of those files under the same license (or in certain cases, one of the GNU licenses). Copyright and license notices must be preserved. Contributors provide an express grant of patent rights. However, a larger work using the licensed work may be distributed under different terms and without source code for files added in the larger work.
### Contribution
Any contribution intentionally submitted for inclusion in the work by you shall be licensed under the Mozilla Public License 2.0 (MPL-2.0). It is required to add a boilerplate copyright notice to the top of each file:
```rs
// Copyright {year} {person OR org} <{email}>
// SPDX-License-Identifier: MPL-2.0
```