작성
·
216
0
for 문 내의 soup 를 출력하면 작동이 되는데.
그이후 select_one 을 써서 브랜드 상품명 가격등을 변수에 넣고 출력하면 터미널이 그냥 멈춰 버립니다.
from itertools import product
import requests
from bs4 import BeautifulSoup
main_url = "https://www.coupang.com/np/search?component=&q=%EA%B2%8C%EC%9D%B4%EB%B0%8D+%EB%A7%88%EC%9A%B0%EC%8A%A4"
#헤더에 유저에이전트 추가
response = requests.get(main_url, headers={'User-Agent' : 'Mozila/5.0'})
html = response.text
soup = BeautifulSoup(html, 'html.parser')
links = soup.select("a.search-product-link")
#print(links)
for link in links :
sub_url = "https://www.coupang.com/" + link.attrs['href']
response = requests.get(sub_url, headers={'User-Agent' : 'Mozila/5.0'})
html = response.text
soup = BeautifulSoup(html, 'html.parser')
# print(soup).text
#브랜드명
# brand_name = soup.select_one("a.prod-brand-name").text
# #상품명
# product_name = soup.select_one("h2.prod-buy-header__title").text
# #가격
product_price = soup.select_one("span.total-price > strong")
# print(brand_name, product_name ,product_price)
print(product_price)
결과물은
Microsoft Windows [Version 10.0.22000.556]
(c) Microsoft Corporation. All rights reserved.
D:\python\startcoding>C:/Users/iam6e/AppData/Local/Programs/Python/Python310/python.exe "d:/python/startcoding/실전편/03.쿠팡크롤링/01_첫번째 페이지 크롤링.py"
이렇게 그냥 아무것도 동작하지 않고 터미널을 닫아야만 해요 ㅠㅜㅜ 어떻게 해야 할까요?