【发布时间】:2020-01-19 18:29:44
【问题描述】:
我在尝试从此 html 摘录中提取信息时遇到了一些问题。
到目前为止,我正在使用它来提取下面的 html。
#//////////////////////////////
with open('soup.html','r') as f:
soup = BeautifulSoup(f, 'html.parser')
base = soup.find_all('script', type="application/ld+json")
print(base)
#//////////////////////////////
- 如何提取每行的 URL?
- 如何提取每行的名称?
这是我得到的:
[<script type="application/ld+json">
{"@context":"http://schema.org","@type":"Organization","name":"Redfin","logo":"https://ssl.cdn-redfin.com/static-images/images/redfin-logo-transparent-bg-260x66.png","url":"https://www.redfin.com"}
</script>,
<script type="application/ld+json">
[{"@context":"http://schema.org","name":"7316 Green St, New Orleans, LA 70118","url":"/LA/New-Orleans/7316-Green-St-70118/home/79443425","address":{"@type":"PostalAddress","streetAddress":"7316 Green St","addressLocality":"New Orleans","addressRegion":"LA","postalCode":"70118","addressCountry":"US"},"numberOfRooms":"6","@type":"SingleFamilyResidence"},{"@context":"http://schema.org","@type":"Product","name":"7316 Green St, New Orleans, LA 70118","offers":{"@type":"Offer","price":"624900","priceCurrency":"USD"},"url":"/LA/New-Orleans/7316-Green-St-70118/home/79443425"}]
</script>,
<script type="application/ld+json">
[{"@context":"http://schema.org","name":"257 Cherokee St #2, New Orleans, LA 70118","url":"/LA/New-Orleans/257-Cherokee-St-70118/unit-2/home/144766248","address":{"@type":"PostalAddress","streetAddress":"257 Cherokee St #2","addressLocality":"New Orleans","addressRegion":"LA","postalCode":"70118","addressCountry":"US"},"numberOfRooms":"2","@type":"SingleFamilyResidence"},{"@context":"http://schema.org","@type":"Product","name":"257 Cherokee St #2, New Orleans, LA 70118","offers":{"@type":"Offer","price":"129500","priceCurrency":"USD"},"url":"/LA/New-Orleans/257-Cherokee-St-70118/unit-2/home/144766248"}]
</script>, <script type="application/ld+json">
【问题讨论】:
标签: beautifulsoup