-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrawl.py
468 lines (432 loc) · 17.3 KB
/
crawl.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
# -*- coding: utf-8 -*-
import os
import re
import sys
import shutil
import pathlib
import logging
import argparse
import numpy as np
import pandas as pd
import cv2
from tqdm import tqdm
from hashlib import md5
from selenium.common.exceptions import WebDriverException
from core.image_downloader import get_arg_parser
from core.image_downloader import process_proxy
from core.downloader import download_images
from core.crawler import crawl_image_urls
DEFAULT_STARTING_NUMBER = 1
RELEVANCE_REGEX = re.compile('[0-9]+')
def eprint(*args, **kwargs):
print(*args, file=sys.stderr, **kwargs)
def set_progbar_status(progbar, keyword, status, comment=""):
progbar.set_description(f'{status} {keyword}{" " + comment if len(comment) > 0 else ""}')
def safe_remove(filepath):
if os.path.exists(filepath):
try:
os.remove(filepath)
except:
logging.error(f'Unable to remove {filepath}')
if __name__ == '__main__':
# Argument parser
parser = get_arg_parser(keywords_required=False)
parser.add_argument(
'--engines',
metavar='STRING',
default=None,
type=str,
help='Engine names separated by comma (,). Overrides the --engine option.'
)
parser.add_argument(
'--keywords',
'-k',
metavar='STRING',
default=None,
type=str,
help='Keywords separated by comma (,).'
)
parser.add_argument(
'--format-filter',
metavar='STRING',
required=False,
default='jpg,jpeg,png,webp',
help='Case insensitive formats separated by comma (,)')
parser.add_argument(
'--file',
'-f',
metavar='DIR',
default=None,
type=str,
help='Path to the input file.'
)
parser.add_argument(
'--input-type',
type=str,
default=None,
help='File type (default: inferred).',
choices=['txt', 'csv', 'tsv', 'excel', 'stdin', 'cmd'])
parser.add_argument(
'--begin',
metavar='INT',
required=False,
default=None,
type=int,
help='The beginning row number (excluding the header row).')
parser.add_argument(
'--end',
metavar='INT',
required=False,
default=None,
type=int,
help='The last row number (default to the last row).')
parser.add_argument(
'--column-index',
metavar='INT',
required=False,
default=None,
type=int,
help='The index of the desired column.')
parser.add_argument(
'--column-name',
metavar='STRING',
required=False,
default=None,
type=str,
help='The name of the desired column.')
parser.add_argument(
'--exclude-header',
action='store_true',
required=False,
default=False,
help='Exclude the header from the input file.')
parser.add_argument(
'--max-attempts',
metavar='INT',
required=False,
default=5,
type=int,
help='Maximum number of attempts allowed to get the required number of images.')
parser.add_argument(
'--required-number',
metavar='INT',
default=None,
type=int,
help='Required number of images to download for the keywords (default: any).')
parser.add_argument(
'--file-prefix',
metavar='STRING',
required=False,
default=None,
type=str,
help='File prefix (default: current keyword).')
parser.add_argument(
'--images-format',
metavar='STRING',
required=False,
default=None,
type=str,
help='The format of output images. Default: not converted.')
parser.add_argument(
'--images-quality',
metavar='INT',
default=95,
type=int,
help='Only required when --images-format is specified. (Default: 95 when --images-format is specifed)')
parser.add_argument(
'--min-dim',
metavar='STRING',
required=False,
default='0,0',
help='Minimum dimension of the image (default: none). Example: 1024,768')
parser.add_argument(
'--sort',
metavar='STRING',
required=False,
default='rank,asc',
help='The criteria for sorting (default: rank,asc). Example: resolution,desc')
parser.add_argument(
'--echo-only',
action='store_true',
required=False,
help='Only output the keywords in comma-separated format.')
parser.add_argument(
'--remove-extra',
action='store_true',
required=False,
help='Only keep the minimum number of images.')
parser.add_argument(
'--starting-number',
metavar='INT',
default=DEFAULT_STARTING_NUMBER,
type=int,
help='Your preference of the starting number (default: 1).')
parser.add_argument(
'--include-index',
action='store_true',
required=False,
help='Include the index in the folder name.')
parser.add_argument(
'--remove-duplicate',
action='store_true',
required=False,
help='Remove duplicate images.')
parser.add_argument(
'--verbose',
action='store_true',
required=False,
help='Show debug information.')
parser.add_argument(
'--debug-mode',
action='store_true',
required=False,
help='Show debug information (not recommended).')
parser.add_argument(
'stdin',
nargs='?',
type=argparse.FileType('r'),
default=sys.stdin)
args = parser.parse_args()
# Set the desired args.proxy_type and args.proxy
process_proxy(args)
# print(args)
# Handle allowed file formats
args.format_filter = args.format_filter.split(',')
# jpg is an alias for jpeg
if 'jpg' in args.format_filter and 'jpeg' not in args.format_filter:
args.format_filter.append('jpeg')
# Handle input for minimum image dimensions
args.min_dim = [int(x) for x in args.min_dim.split(',')]
if len(args.min_dim) != 2:
eprint('Error: incorrect input for dimension')
exit()
# Handle sorting
args.sort = args.sort.split(',')
if len(args.min_dim) != 2:
eprint('Error: incorrect input for sorting')
exit()
if args.sort[0] not in ['rank', 'resolution']:
eprint(f'Error: unknown sorting method {args.sort[0]}')
exit()
# Configure the logger
logging.basicConfig(filename='error.log', level=logging.ERROR,
format='[%(asctime)s] %(message)s',
datefmt='%Y/%m/%d %I:%M:%S %p')
if args.input_type is None:
# Determine the input type
if args.keywords is not None:
# Provided the keywords as -k or --keywords
args.input_type = 'cmd'
elif not sys.stdin.isatty():
# Provided the keywords via stdin
args.input_type = 'stdin'
else:
# Determine the file type
if args.file is None or not os.path.isfile(args.file):
print(f'Error: path {args.file} is not a file.')
exit()
file_type = args.file.split('.')[-1].lower()
if file_type in ['xlsx', 'xls']:
args.input_type = 'excel'
elif file_type in ['csv', 'tsv', 'txt']:
args.input_type = file_type
else:
# By default, read it as a text file
args.input_type = 'txt'
if args.input_type == 'cmd':
keywords = args.keywords.split(',')
elif args.input_type == 'stdin':
keywords = args.stdin.read().split(',')
elif args.input_type in ['excel', 'csv', 'tsv']:
if args.column_name is None and args.column_index is None:
eprint('Error: neither column name nor column index is specified')
exit()
if args.input_type == 'excel':
df = pd.read_excel(
args.file, header=None if args.exclude_header else [0])
elif args.input_type == 'csv':
df = pd.read_csv(
args.file, header=None if args.exclude_header else [0])
elif args.input_type == 'tsv':
df = pd.read_csv(args.file, sep='\t',
header=None if args.exclude_header else [0])
if args.column_index:
# If column index is specified, use column index
keywords = list(df.iloc[args.column_index-1])
else:
# Otherwise, use column name
keywords = list(df[args.column_name])
else:
# Read it as text file
with open(args.file, 'r') as f:
keywords = list(f.read())
# Trim the list of keywords according to user input
# By default, use the entire length
if args.begin is None:
args.begin = args.starting_number
elif args.begin < args.starting_number:
eprint(
f'Error: the starting position is less than {args.starting_number}')
exit()
if args.end is None:
args.end = len(keywords)-1+args.starting_number
num_digits = len(str(len(keywords)))
keywords = keywords[args.begin -
args.starting_number:args.end+1-args.starting_number]
# Only echo the list
if args.echo_only:
print(','.join(keywords))
exit()
# Validate engines
engines = args.engines
if engines is None:
engines = [args.engine]
else:
engines = engines.split(',')
# Crawl and download
progbar = tqdm(keywords, ncols=100, unit='keyword')
for index, keyword in enumerate(progbar):
try:
vidx = index + args.begin
if args.include_index:
dst_dir = os.path.join(
args.output, f'{str(vidx).zfill(num_digits)}_{keyword}')
else:
dst_dir = os.path.join(args.output, keyword)
for attempt in range(args.max_attempts):
# When there are more attempts available, remove the downloaded images
set_progbar_status(progbar, keyword, 'Cleaning')
if os.path.exists(dst_dir):
shutil.rmtree(dst_dir)
else:
os.mkdir(dst_dir)
try:
crawled_urls = []
for engine in engines:
set_progbar_status(progbar, keyword, 'Crawling', comment=f'from {engine}')
crawled_urls = crawled_urls + \
crawl_image_urls(keywords=keyword, engine=engine,
max_number=args.max_number, face_only=args.face_only,
safe_mode=args.safe_mode, proxy_type=args.proxy_type,
proxy=args.proxy, browser=args.driver,
image_type=args.type, color=args.color,
quiet=not args.verbose)
set_progbar_status(progbar, keyword, 'Downloading')
images_len = download_images(image_urls=crawled_urls, dst_dir=dst_dir,
concurrency=args.num_threads, timeout=args.timeout,
proxy_type=args.proxy_type, proxy=args.proxy,
file_prefix=None, format_filter=args.format_filter,
min_dim=args.min_dim)
except WebDriverException as e:
logging.error(str(e).strip())
# Handle more errors
continue
if args.required_number is not None:
# User specified the number of images required
if images_len >= args.required_number:
# Skip subsequent attempts
break
elif attempt == args.max_attempts - 1:
# Reaching the last attempt
logging.error(f'Only downloaded {images_len} images. But {args.required_number} ' +
f'images are required for keyword: {keyword} ({vidx}).')
else:
# When --required-number is not specified
break
# Retrieve the list of images downloaded
img_files = os.listdir(dst_dir)
# Remove duplicated images (optional)
if args.remove_duplicate:
set_progbar_status(progbar, keyword, 'Removing duplicates for')
img_hashes = set()
new_img_files = []
for img in img_files:
filepath = os.path.join(dst_dir, img)
with open(filepath, 'rb') as img:
img_hash = md5(img.read()).hexdigest()
if img_hash not in img_hashes:
img_hashes.add(img_hash)
new_img_files.append(img)
else:
safe_remove(filepath)
img_hashes = new_img_files
# Sorting (optional) and renaming to prefix
# Sorting options: resolution, rank
set_progbar_status(progbar, keyword, 'Sorting')
sort_criteria = []
if args.sort[0] == 'resolution':
for img in img_files:
with open(os.path.join(dst_dir, img), 'rb') as img:
im = np.asarray(bytearray(img.read()), dtype="uint8")
im = cv2.imdecode(im, cv2.IMREAD_COLOR)
try:
height, width = im.shape[:2]
sort_criteria.append(height*width)
except:
msg = f'Unable to determine the size for {img}'
eprint(msg)
logging.error(msg)
sort_criteria.append(0) # A default pixel value of 0
elif args.sort[0] == 'rank':
sort_criteria = [
int(re.search(RELEVANCE_REGEX, fn).group(0)) for fn in img_files]
# Sort the files in ascending (asc) order
sorted_files = [fn for _, fn in sorted(
zip(sort_criteria, img_files))]
# Reverse the order if descending (desc) is specified
if args.sort[1] == 'desc':
sorted_files = sorted_files[::-1]
# Remove extra images
if args.remove_extra:
set_progbar_status(progbar, keyword, 'Removing extra images for')
# When specified to reduce the number of images needed using --remove-extra
if len(sorted_files) > args.required_number:
for fn in sorted_files[args.required_number:]:
safe_remove(os.path.join(dst_dir, fn))
# Also remove from the list
sorted_files = sorted_files[:args.required_number]
# Rename the files
set_progbar_status(progbar, keyword, 'Renaming files for')
curr_file_prefix = args.file_prefix
folder_num_digits = len(str(len(sorted_files)))
if curr_file_prefix is None:
# If no prefix is specified, the keyword will be used as the prefix
curr_file_prefix = keyword
for fi, old_fn in enumerate(sorted_files):
old_fp = os.path.join(dst_dir, old_fn)
# The new filenames will be Prefix01, Prefix02, ...
new_fp = os.path.join(
dst_dir, f'{curr_file_prefix}{str(fi+1).zfill(folder_num_digits)}')
file_suffix = pathlib.Path(old_fp).suffix
if file_suffix == '.jpeg':
file_suffix = '.jpg'
# NOTE: Files like example.tar.gz may have problems, but that's not an image
if args.images_format is None or file_suffix[1:] == args.images_format:
print(f"Skipping {old_fp}")
if len(file_suffix) > 0:
new_fp = f'{new_fp}{file_suffix}'
shutil.move(old_fp, new_fp)
else:
print(f"Converting {old_fp}")
# When args.images_format is not None and the format is incorrect
# convert images to the specifed format
try:
with open(old_fp, 'rb') as img:
img = np.asarray(bytearray(img.read()), dtype="uint8")
img = cv2.imdecode(img, cv2.IMREAD_COLOR)
img = cv2.imencode(f'.{args.images_format}', img)
new_fp = f'{new_fp}.{args.images_format}'
with open(new_fp, 'wb') as new_img:
new_img.write(img[1].tobytes())
except:
msg = f'Unable to convert image {old_fp}'
eprint(msg)
logging.error(msg)
safe_remove(old_fp)
except Exception as e:
msg = f'Failed to complete keyword {keyword}. Cause: {e}'
eprint(msg)
logging.error(msg)
if args.debug_mode:
raise e
print("Done.")