diff --git a/README.md b/README.md index 418438e..c38647e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # AutoCrawler -Google, Naver multiprocess image crawler +Google, Naver multiprocess image crawler (High Quality & Speed & Customizable) ![](animation.gif) @@ -19,7 +19,7 @@ Google, Naver multiprocess image crawler # Arguments usage: ``` -python3 auto_crawler.py [--skip true] [--threads 4] [--google true] [--naver true] [--full false] [--face false] +python3 main.py [--skip true] [--threads 4] [--google true] [--naver true] [--full false] [--face false] ``` ``` @@ -62,7 +62,7 @@ sudo apt-get install screen <- This will allow you to close SSH terminal while r screen -S s1 -Xvfb :99 -ac +Xvfb :99 -ac & DISPLAY=:99 python3 main.py ``` diff --git a/main.py b/main.py index b70971e..ec4aa04 100644 --- a/main.py +++ b/main.py @@ -57,7 +57,7 @@ def __init__(self, skip_already_exist=True, n_threads=4, do_google=True, do_nave :param do_google: Download from google.com (boolean) :param do_naver: Download from naver.com (boolean) :param download_path: Download folder path - :param full_resolution: Download full resolution image rather than thumbnails (slow) + :param full_resolution: Download full resolution image instead of thumbnails (slow) :param face: Face search mode """ @@ -273,7 +273,7 @@ def imbalance_check(self): parser.add_argument('--threads', type=int, default=4, help='Number of threads to download.') parser.add_argument('--google', type=str, default='true', help='Download from google.com (boolean)') parser.add_argument('--naver', type=str, default='true', help='Download from naver.com (boolean)') - parser.add_argument('--full', type=str, default='false', help='Download full resolution image rather than thumbnails (slow)') + parser.add_argument('--full', type=str, default='false', help='Download full resolution image instead of thumbnails (slow)') parser.add_argument('--face', type=str, default='false', help='Face search mode') args = parser.parse_args()