我已经用python编写了一个脚本,从网页的着陆页上抓取name
,address
和phone
的不同餐馆,并解析author
和review
来自每个餐厅内页。
我想在
yield
函数中使用get_additional_info(link)
生成结果,但在get_links(link)
函数中将其与其他结果一起打印。
到目前为止,我已经写过:
import requests
from bs4 import BeautifulSoup
from urllib.parse import urljoin
url = "https://www.yellowpages.com/search?search_terms=restaurant&geo_location_terms=San+Francisco%2C+CA"
base = "https://www.yellowpages.com"
def get_links(link):
res = requests.get(link,headers={'User-Agent':'Mozilla/5.0'})
soup = BeautifulSoup(res.text,"lxml")
for item in soup.select(".v-card"):
inner_link = item.select_one("a.business-name")
author,review = get_additional_info(urljoin(base,inner_link.get('href')))
title = inner_link.text
address = item.select_one("p.adr").get_text(strip=True)
phone = item.select_one(".phone").text
yield title,address,phone,author,review
def get_additional_info(link):
res = requests.get(link,headers={'User-Agent':'Mozilla/5.0'})
soup = BeautifulSoup(res.text,"lxml")
for elem in soup.select("article[class='clearfix']"):
try:
author = elem.select_one(".review-info a.author").text
except AttributeError: author = ""
try:
review = elem.select_one(".review-response > p").text
except AttributeError: review = ""
yield author, review
if __name__ == '__main__':
for item in get_links(url):
print(item)
如果我运行上述脚本,它将指向行author,review = get_additional_info(urljoin(base,inner_link.get('href')))
引发以下错误:
Traceback (most recent call last):
File "C:\Users\WCS\AppData\Local\Programs\Python\Python37-32\demo.py", line 36, in <module>
for item in get_links(url):
File "C:\Users\WCS\AppData\Local\Programs\Python\Python37-32\demo.py", line 14, in get_links
author,review = get_additional_info(urljoin(base,inner_link.get('href')))
ValueError: too many values to unpack (expected 2)
我要抓取的所有字段均已正确定义(选择器)。
这是我the output所追求的方式:
PS,我希望坚持使用我已经尝试过的方式,这意味着我不想解析内部页面中的所有内容,因为数据对我来说毫无用处。
答案 0 :(得分:2)
如果我理解正确,那么您想“加入”链接和其他信息。一种方法是这样:
import requests
from bs4 import BeautifulSoup
from urllib.parse import urljoin
from textwrap import shorten
url = "https://www.yellowpages.com/search?search_terms=restaurant&geo_location_terms=San+Francisco%2C+CA"
base = "https://www.yellowpages.com"
def get_links(session, link):
res = session.get(link,headers={'User-Agent':'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0'})
soup = BeautifulSoup(res.text,"lxml")
for item in soup.select(".v-card"):
inner_link = item.select_one("a.business-name")
title = inner_link.text
address = item.select_one("p.adr").get_text(strip=True)
phone = item.select_one(".phone").text
for author, review in get_additional_info(session, urljoin(base,inner_link.get('href'))):
yield title,address,phone,author,review
def get_additional_info(session, link):
res = session.get(link,headers={'User-Agent':'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0'})
soup = BeautifulSoup(res.text,"lxml")
for elem in soup.select("article[class='clearfix']"):
try:
author = elem.select_one(".review-info a.author").text
except AttributeError: author = ""
try:
review = elem.select_one(".review-response > p").text
except AttributeError: review = ""
yield author, review
if __name__ == '__main__':
with requests.session() as s:
# this sets all cookies
res = s.get("https://www.yellowpages.com", headers={'User-Agent':'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:68.0) Gecko/20100101 Firefox/68.0'}).text
for title,address,phone,author,review in get_links(s, url):
print('{: <30}{: <30}{: <20}{: <20}{}'.format(shorten(title, 30), shorten(address, 30), shorten(phone, 20), shorten(author, 20), shorten(review, 60)))
打印:
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 Mark I. Their food is good but i think they need to improve on [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 Cathy L. This place is pretty much my go to place is I want [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 Mary C. They have so many things in here worth going in here [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 Claude R. The appetizers in here are enough to make you ask for [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 Felicia M. How can this be? This place looks like magic and their [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 Jose H. I feel like I just got from Mexico, we went here last [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 Authentic Mexican. Always busy and the house salsa is [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 I'm disappointed. The decor is ecclectic and fun, the [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 This used to be one of my favorite restaurants until I [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 I came to this restarnt for a birthday of a friend of [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 The reviews here, which I consulted before going, were [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 I have been told to give it a try.Food is on [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 Great food... love the empalmada... sort of like a [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 Definitely the best Mexican restaurant in town!... [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 This place has been consistenly good for a few years. [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 So-so Mexican food served by a vaguely condescending, [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 since the place is small, it gets crowded quickly and [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 Go early if you don't want to wait. They don't take [...]
El Toreador Restaurant 50 W Portal Ave, San [...] (415) 347-3294 A great place where you belong like part of the [...]
House Of Prime Rib 1906 Van Ness Ave, San [...] (415) 636-6476 Keith Y. Loved this place. Food and service was amazing
House Of Prime Rib 1906 Van Ness Ave, San [...] (415) 636-6476 Quintrell P. Was really hungry and needed a place to get some [...]
House Of Prime Rib 1906 Van Ness Ave, San [...] (415) 636-6476 Len K. I'm not usually a fan of red meat, but I'm definitely [...]
House Of Prime Rib 1906 Van Ness Ave, San [...] (415) 636-6476 Emm C. I haven't been able to see San Francisco, one of my [...]
House Of Prime Rib 1906 Van Ness Ave, San [...] (415) 636-6476 James O. For me, it`s one of the best ribs in town, I give [...]
House Of Prime Rib 1906 Van Ness Ave, San [...] (415) 636-6476 Jing H. This is one of the best places if you are craving for [...]
...etc.