繁体   English   中英

简单的 Web 爬虫没有返回数据

[英]Simple Web Scraper returning no data

我试图从网页中抓取数据,但它返回 ["F"] ["F"] 如果没有检索到数据,它应该这样做。 请看下面的代码

`

import pandas as pd
import datetime
import requests
from requests.exceptions import ConnectionError
from bs4 import BeautifulSoup

def web_content_div(web_content, class_path):
    web_content_div = web_content.find_all('div', {"class": class_path})
    try:
        spans = web_content_div[0].find_all('span')
        texts =[span.get_text() for span in spans]
    except IndexError:
        texts=[]
        return texts

def real_time_price(stock_code):
    url = 'https://finance.yahoo.com/quote/' + stock_code + '?p=' + stock_code + '%27&.tsrc=fin-srch'
    # 'https://finance.yahoo.com/quote/' + stock_code + '?p=' + stock_code + '&.tsrc=fin-srch'
    try:
        r = requests.get(url)
        web_content = BeautifulSoup(r.text, 'lxml')
        texts = web_content_div(web_content, 'My(6px) Pos(r) smarthphone_Mt(6px) W(100&%')
        if texts != []:
           price, change = texts[0], texts[1] 
        else:
            price, change = ["F"], ["F"]
    except ConnectionError:
        price, change = [""], [""]

    return price, change
    

Stock = ["BRK-B"]

print(real_time_price("BRK-B"))`

由于几个错别字,您的 class_path 不存在。 有问题的网站引用“My(6px) Pos(r) smartphone_Mt(6px) W(100%)”,我相信这是你的目标。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM