네이버쇼핑 크롤링
## parser_custom.py from bs4 import BeautifulSoup def getProductInfo(li): # print(li) img = li.find("img") alt = img['alt'] priceReload = li.find("span", {"class":"num"}) aTit = li.find("a", {"class":"link"}) href = aTit['href'] return {"name":alt, "price":priceReload.text.replace(",", ""), "link":href} # try: # img = li.find("img") # alt = img['alt'] # priceReload = li.find("span", {"class":"_p..