-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscrape.sh
27 lines (22 loc) · 986 Bytes
/
scrape.sh
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
#!/bin/sh
for i in 1 2
do
echo "cat images"
python3 bbid.py -s "cat" --limit 1000 -o ./images/cats
python3 bbid.py -s "cat image" --limit 1000 -o ./images/cats
python3 bbid.py -s "cat picture" --limit 1000 -o ./images/cats
echo "dog images"
python3 bbid.py -s "dog" --limit 1000 -o ./images/dogs
python3 bbid.py -s "dog image" --limit 1000 -o ./images/dogs
python3 bbid.py -s "dog picture" --limit 1000 -o ./images/dogs
echo "snail images"
python3 bbid.py -s "snail" --limit 1000 -o ./images/snails
python3 bbid.py -s "snail image" --limit 1000 -o ./images/snails
python3 bbid.py -s "snail picture" --limit 1000 -o ./images/snails
echo "Generic images"
python3 bbid.py -s "image" --limit 1000 -o ./images/msc
python3 bbid.py -s "scenery" --limit 500 -o ./images/msc
python3 bbid.py -s "pub" --limit 200 -o ./images/msc
python3 bbid.py -s "pokemon" --limit 200 -o ./images/msc
python3 bbid.py -s "exotic animals" --limit 400 -o ./images/msc
done