【发布时间】:2020-01-01 13:03:05
【问题描述】:
我有以下示例 HTML 块。从每个块中,我想使用 PYTHON 和 Beautifulsoup 提取“alt”和“Author”。我已经使用漂亮的汤解析了 html。任何人都可以帮助编写脚本
<div class="row m-0">
<div class="col-12 d-flex flex-column justify-content-center text-center wow fadeIn" data-wow-delay="0.2s">
<h5 class="text-white alt-font font-weight-400 letter-spacing-1 margin-10px-bottom">INSPIRATIONAL QUOTES</h5>
<span class="text-white-2 opacity8 alt-font mb-0 padding-20px-bottom">Find the perfect quote... and Pass It On®</span>
<form class="search-box2 margin-30px-bottom" action="/inspirational-quotes" method="get">
<div class="input-group add-on width-75 mx-auto sm-width-100">
<input name="q" type="text" value='' placeholder="Search our collection of inspiring quotes..." class="form-control" />
<div class="input-group-append">
<button type="submit" class="btn btn-default"><i class="ti-search text-small m-0"></i></button>
</div>
</div>
</form>
</div>
</div>
<div class='row' id='all_quotes'>
<div class="col-6 col-lg-3 text-center margin-30px-bottom sm-margin-30px-top">
<a href="/inspirational-quotes/7848-i-say-to-myself-that-i-shall-try-to-make-my"><img alt="I say to myself that I shall try to make my life like an open fireplace, so that people may be warmed and cheered by it and so go out themselves to warm and cheer. #<Author:0x00007fde720f6b28>" class="margin-10px-bottom shadow" src="https://assets.passiton.com/quotes/quote_artwork/7848/medium/20191231_tuesday_quote.jpg?1577388768" width="310" height="310" /></a>
<h5 class='value_on_red'><a href="/inspirational-quotes/7848-i-say-to-myself-that-i-shall-try-to-make-my">CHEER</a></h5>
<a href="/inspirational-quotes/7849-the-unselfish-effort-to-bring-cheer-to-others"><img alt="The unselfish effort to bring cheer to others will be the beginning of a happier life for ourselves. #<Author:0x00007fde721154d8>" class="margin-10px-bottom shadow" src="https://assets.passiton.com/quotes/quote_artwork/7849/medium/20191230_monday_quote.jpg?1577388731" width="310" height="310" /></a>
<h5 class='value_on_red'><a href="/inspirational-quotes/7849-the-unselfish-effort-to-bring-cheer-to-others">CHEER</a></h5>
<a href="/inspirational-quotes/8027-there-is-no-mistaking-love-it-is-the-common"><img alt="There is no mistaking love. It is the common fiber of life, the flame that heats our soul, energizes our spirit and supplies passion to our lives. #<Author:0x00007fde7213df28>" class="margin-10px-bottom shadow" src="https://assets.passiton.com/quotes/quote_artwork/8027/medium/20191226_thursday_quote.jpg?1576706550" width="310" height="310" /></a>
<h5 class='value_on_red'><a href="/inspirational-quotes/8027-there-is-no-mistaking-love-it-is-the-common">LOVE</a></h5>
【问题讨论】:
-
请包含有问题的确切 HTML 块而不是链接
-
Devesh - 我已经复制了源代码,如果有帮助请告诉我
-
请问你的 python 编码尝试在哪里?
标签: html python-3.x web-scraping beautifulsoup