You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-2Lines changed: 10 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -178,8 +178,13 @@ Parameters will change the download behavior for snapshots.
178
178
-**`-m`**, **`--metadata`**<br>
179
179
Folder where metadata will be saved (`cdx`/`db`/`csv`/`log`). If you are downloading into a network share, you SHOULD set this to a local path because sqlite locking mechanism may cause issues with network shares.
180
180
181
-
-**`--verbose`**:<br>
182
-
Increase output verbosity.
181
+
-**`-v`**, **`--verbose`**`[level]`:<br>
182
+
Set verbosity level. Available levels:
183
+
-`low` (or `quiet`, `minimal`, `min`): Essential output only (same as no flag)
184
+
-`default` (or `normal`, `verbose`): Standard verbose output (default when flag is set)
behavior.add_argument("--workers", type=int, default=1, metavar="", help="number of workers (simultaneous downloads)")
42
49
behavior.add_argument("--delay", type=int, default=0, metavar="", help="delay between each download in seconds")
43
-
behavior.add_argument("--wait", type=int, default=15, metavar="", help="seconds to wait before renewing connection after HTTP errors or snapshot download errors (default: 15)",)
50
+
behavior.add_argument(
51
+
"--wait",
52
+
type=int,
53
+
default=15,
54
+
metavar="",
55
+
help="seconds to wait before renewing connection after HTTP errors or snapshot download errors (default: 15)",
56
+
)
44
57
45
58
special=parser.add_argument_group("special")
46
59
special.add_argument("--reset", action="store_true", help="reset the job and ignore existing cdx/db/csv files")
0 commit comments