better explanation

This commit is contained in:
limkokhole
2022-01-22 09:26:00 +08:00
parent ab62aca0bc
commit cd88bb1b5d
2 changed files with 10 additions and 9 deletions

View File

@@ -58,13 +58,14 @@ Download all images/videos from Pinterest user/board/section.
write to log. write to log.
-f, --force Force re-download even if image already exist. -f, --force Force re-download even if image already exist.
Normally used with -rs Normally used with -rs
-rs, --re-scrape Default is only fetch new images since latest Pin ID -rs, --re-scrape Default is only fetch new images since latest(highest)
image to speed up update process. This option disable Pin ID local image to speed up update process. This
that behavior and re-scrape all, use it when you feel option disable that behavior and re-scrape all, use it
missing images somewhere or incomplete download. This when you feel missing images somewhere or incomplete
issue is because Pinterest only lists reordered as you download. This issue is because Pinterest only lists
see in the webpage which affects sort by time/PinID reordered as you see in the webpage which possible
trick. newer images reorder below local highest Pin ID image
and missed unless fetch all pages.
-es, --exclude-section -es, --exclude-section
Exclude sections if download from username or board. Exclude sections if download from username or board.
-ps HTTPS_PROXY, --https-proxy HTTPS_PROXY -ps HTTPS_PROXY, --https-proxy HTTPS_PROXY

View File

@@ -1274,9 +1274,9 @@ def main():
Note: Pin id without Title/Description/Link/Metadata/Created_at will not write to log.') Note: Pin id without Title/Description/Link/Metadata/Created_at will not write to log.')
arg_parser.add_argument('-f', '--force', action='store_true', help='Force re-download even if image already exist. Normally used with -rs') arg_parser.add_argument('-f', '--force', action='store_true', help='Force re-download even if image already exist. Normally used with -rs')
# Need reverse images order(previously is latest to oldest) to avoid abort this need re-download in-between missing images. # Need reverse images order(previously is latest to oldest) to avoid abort this need re-download in-between missing images.
arg_parser.add_argument('-rs', '--re-scrape', dest='rescrape', action='store_true', help='Default is only fetch new images since latest Pin ID image to speed up update process.\n\ arg_parser.add_argument('-rs', '--re-scrape', dest='rescrape', action='store_true', help='Default is only fetch new images since latest(highest) Pin ID local image to speed up update process.\n\
This option disable that behavior and re-scrape all, use it when you feel missing images somewhere or incomplete download.\n\ This option disable that behavior and re-scrape all, use it when you feel missing images somewhere or incomplete download.\n\
This issue is because Pinterest only lists reordered as you see in the webpage which affects sort by time/PinID trick.') This issue is because Pinterest only lists reordered as you see in the webpage which possible newer images reorder below local highest Pin ID image and missed unless fetch all pages.')
arg_parser.add_argument('-es', '--exclude-section', dest='exclude_section', action='store_true', help='Exclude sections if download from username or board.') arg_parser.add_argument('-es', '--exclude-section', dest='exclude_section', action='store_true', help='Exclude sections if download from username or board.')
arg_parser.add_argument('-ps', '--https-proxy', help='Set proxy for https.') arg_parser.add_argument('-ps', '--https-proxy', help='Set proxy for https.')
arg_parser.add_argument('-p', '--http-proxy', help='Set proxy for http.') arg_parser.add_argument('-p', '--http-proxy', help='Set proxy for http.')