Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -8,7 +8,7 @@ plusUrl = input('검색어를 입력하세요 : ') | ... | @@ -8,7 +8,7 @@ plusUrl = input('검색어를 입력하세요 : ') |
| 8 | url = baseUrl + quote_plus(plusUrl) | 8 | url = baseUrl + quote_plus(plusUrl) |
| 9 | html = urlopen(url) | 9 | html = urlopen(url) |
| 10 | soup = bs(html, "html.parser") | 10 | soup = bs(html, "html.parser") |
| 11 | -img = soup.find_all(class_='_img', limit = 20) | 11 | +img = soup.find_all(class_='_img', limit = 30) |
| 12 | 12 | ||
| 13 | n = 1 | 13 | n = 1 |
| 14 | for i in img: | 14 | for i in img: | ... | ... |
-
Please register or login to post a comment