Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/YoongiKim/AutoCrawler
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoongi Kim committed Feb 19, 2019
2 parents ebbfbe2 + 6d0b3be commit 5b7ce01
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# AutoCrawler
Google, Naver multiprocess image crawler
Google, Naver multiprocess image crawler (High Quality & Speed & Customizable)

![](animation.gif)

Expand All @@ -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]
```

```
Expand Down Expand Up @@ -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
```
Expand Down
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""

Expand Down Expand Up @@ -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()

Expand Down

0 comments on commit 5b7ce01

Please sign in to comment.