Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
17f29a4ac4 | |||
12410f4103 |
23
README.md
23
README.md
@@ -36,10 +36,14 @@ The script can be executed (globally) using:
|
|||||||
$ downloadlist.py -f file.txt -d destination -t threads -l lines
|
$ downloadlist.py -f file.txt -d destination -t threads -l lines
|
||||||
|
|
||||||
where:
|
where:
|
||||||
`file.txt` is the file name/path with the list of URLs to be downloaded
|
|
||||||
`destination` is the path, to which the files should be downloaded
|
`file.txt` is the file name/path with the list of URLs to be downloaded (line by line)
|
||||||
`threads` is the number of processes to be used to download the URLs simultaneously
|
|
||||||
`lines` is the number of lines to read from the files and read simultaneously. 0 leads to reading the whole file.
|
`destination` is the path, to which the files should be downloaded
|
||||||
|
|
||||||
|
`threads` is the number of processes to be used to download the URLs simultaneously
|
||||||
|
|
||||||
|
`lines` is the number of lines to read from the files and read simultaneously. 0 leads to reading the whole file.
|
||||||
|
|
||||||
You may use the package in your own scripts by importing it:
|
You may use the package in your own scripts by importing it:
|
||||||
|
|
||||||
@@ -50,9 +54,12 @@ then you can download a list of files using:
|
|||||||
listdownloader.download_files(URLs, destination, num_threads)
|
listdownloader.download_files(URLs, destination, num_threads)
|
||||||
|
|
||||||
where:
|
where:
|
||||||
`URLs` is a list of the URLs to be downloaded
|
|
||||||
`destination` is a string with the path, at which the files have to be saved
|
`URLs` is a list of the URLs to be downloaded
|
||||||
`num_threads` is the number of threads/processes to use for the download.
|
|
||||||
|
`destination` is a string with the path, at which the files have to be saved
|
||||||
|
|
||||||
|
`num_threads` is the number of threads/processes to use for the download.
|
||||||
|
|
||||||
You can also download a single file using the function:
|
You can also download a single file using the function:
|
||||||
|
|
||||||
@@ -64,4 +71,4 @@ MPL
|
|||||||
|
|
||||||
About
|
About
|
||||||
-----
|
-----
|
||||||
This script was written by Samer Afach, samer@afach.de for test purposes.
|
This script was written by Samer Afach for test purposes.
|
||||||
|
Reference in New Issue
Block a user