Inflearn コミュニティ Q&A
投稿者なし
この投稿の投稿者情報は削除されました。
이미 누군가가 질문을 하셨는데...
作成
·
568
1

웹 스크래핑seleniumpython웹-크롤링
回答 11
0
0
0
0
0
import requests
from bs4 import BeautifulSoup
url = "https://www.coupang.com/np/search?q=%EB%85%B8%ED%8A%B8%EB%B6%81&channel=user&component=&eventCategory=SRP&trcid=&traid=&sorter=scoreDesc&minPrice=&maxPrice=&priceRange=&filterType=&listSize=36&filter=&isPriceRange=false&brand=&offerCondition=&rating=0&page=3&rocketAll=false&searchIndexingToken=1=4&backgroundColor="
res = requests.get(url)
res.raise_for_status()
soup = BeautifulSoup(res.text, "lxml")
print(res.text)
제가 작성한 코드입니다
0
0
0
0






