Added new --download-delay flag to allow throttling the download across all supported platofrms.

This commit is contained in:
Dagmawi Biru
2020-12-27 19:26:47 -06:00
parent 56428883a1
commit 2c99c584a5
2 changed files with 13 additions and 1 deletions

View File

@@ -153,6 +153,11 @@ class Arguments:
action="store_true",
help="Just saved posts into a the POSTS.json file without downloading"
)
parser.add_argument("--download-delay",
metavar="DELAY",
type=int,
help="Amount, in seconds, to delay before beginning the next item in the download queue"
)
if arguments == []: