Update all recursively.

This commit is contained in:
limkokhole
2022-01-23 06:29:09 +08:00
parent a47f036772
commit 3a450c2725
2 changed files with 6 additions and 5 deletions

View File

@@ -67,10 +67,11 @@ Download all images/videos from Pinterest user/board/section.
reordered as you see in the webpage which possible reordered as you see in the webpage which possible
newer images reorder below local highest Pin ID image newer images reorder below local highest Pin ID image
and missed unless fetch all pages. and missed unless fetch all pages.
-ua, --update-all Update all in current directory. Only Options other -ua, --update-all Update all in current directory recursively. Options
than -c, -j, and -rs will ignore. -c must same if other than -c, -j, and -rs will ignore. -c must same
provided previously or else filename not same will re- if provided previously or else filename not same will
download. Not recommend to use -c at all. re-download. Not recommend to use -c at all.
-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

@@ -1512,7 +1512,7 @@ def run_direct_main():
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\ 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 possible newer images reorder below local highest Pin ID image and missed unless fetch all pages.') 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('-ua', '--update-all', dest='update_all', action='store_true', help='Update all in current directory. Only\n\ arg_parser.add_argument('-ua', '--update-all', dest='update_all', action='store_true', help='Update all in current directory recursively.\n\
Options other than -c, -j, and -rs will ignore.\n\ Options other than -c, -j, and -rs will ignore.\n\
-c must same if provided previously or else filename not same will re-download. Not recommend to use -c at all.') -c must same if provided previously or else filename not same will re-download. Not recommend to use -c at all.')
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.')