diff options
| author | Mariot Tsitoara <[email protected]> | 2021-01-06 17:32:23 +0100 |
|---|---|---|
| committer | Mariot Tsitoara <[email protected]> | 2021-01-06 17:32:23 +0100 |
| commit | 0a42f67b3ac10ac27ec7ee1bcf62bc8628c232e0 (patch) | |
| tree | f83a0f39469cf890be8d42582d5421cded762a43 /README.md | |
| parent | Limit runtime for reloading (diff) | |
| download | chan-downloader-0a42f67b3ac10ac27ec7ee1bcf62bc8628c232e0.tar.xz chan-downloader-0a42f67b3ac10ac27ec7ee1bcf62bc8628c232e0.zip | |
Use concurrent downloadsv0.2.0
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -1,9 +1,13 @@ chan-downloader =============== +Clone of [4chan-downloader](https://github.com/Exceen/4chan-downloader/) written in Rust CLI to download all images/webms of a 4chan thread. + If you use the reload flag, previously saved image won't be redownloaded. +Best results obtained while using the option `-c 4` (4 concurrent downloads). + ``` USAGE: chan-downloader [FLAGS] [OPTIONS] --thread <thread> @@ -14,10 +18,11 @@ FLAGS: -V, --version Prints version information OPTIONS: - -i, --interval <interval> Time between each reload (in minutes. Default is 5) - -l, --limit <limit> Time limit for execution (in minutes. Default is 120) - -o, --output <output> Output directory (Default is 'downloads') - -t, --thread <thread> URL of the thread + -c, --concurrent <concurrent> Number of concurrent requests (Default is 2) + -i, --interval <interval> Time between each reload (in minutes. Default is 5) + -l, --limit <limit> Time limit for execution (in minutes. Default is 120) + -o, --output <output> Output directory (Default is 'downloads') + -t, --thread <thread> URL of the thread ``` chan_downloader |