【问题标题】:Unable to scrape different fields from two different depth simultaneously无法同时从两个不同的深度刮取不同的场
【发布时间】:2019-08-23 18:47:02
【问题描述】:

我用 python 编写了一个脚本来从网页的登录页面中抓取不同 retaurants 的 nameaddressphone 并解析每个餐厅的 authorreview内页。

我想在get_additional_info(link) 函数中使用yield 生成结果,但在get_links(link) 函数中与其他结果一起打印。

Website address

到目前为止我已经写了:

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 我希望坚持我已经尝试过的方式,这意味着我不想解析内页中的所有内容,因为这些数据对我来说毫无用处。

【问题讨论】:

  • get_additional_info() 函数返回一个生成器;您必须使用此生成器才能获取项目,或者如果您不需要生成器,则更改函数以返回这些项目。
  • 我可以在get_additional_info() 函数中返回所有这些项目并在get_links(link) 中打印相同的内容吗?如果我按原样返回值,该函数将只记住最后一次迭代。
  • 嗯,您可以将所有项目添加到列表中,但可以避免。为了打开生成器的包装,您必须知道它将返回多少个项目,这在这种情况下可能是不可能的。相反,您可以做的是遍历生成器并解压缩每个项目,就像在 Andrej 的回答中所做的那样。
  • 非常感谢@t.m.adam 先生。这是我需要知道的。

标签: python python-3.x web-scraping


【解决方案1】:

如果我理解正确,您想“加入”链接和其他信息。一种方法是:

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.

【讨论】:

  • 您可以将for title,address,phone,author,review in get_links(s, url): 缩短为仅for title in get_links(s, url):,这仍然会产生相同的结果。
猜你喜欢
  • 2020-07-30
  • 1970-01-01
  • 2018-01-11
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2021-06-21
相关资源
最近更新 更多