【问题标题】:Searching against a negative set of words搜索一组否定词
【发布时间】:2014-02-08 02:27:42
【问题描述】:

这是我今天早上提出的问题的后续 - Using Beatiful Soup to get data from non-class section

我正在尝试获取一组信息并针对一组关键字进行搜索。如果在信息集中找到关键字,我想保释。但是,即使关键字在信息集中,我的代码也没有找到关键字

negative_keywords = ['basement', 'unfinished', 'hardwood']  #defined at beginning of script


bodyContents = soup.find(attrs={'id' : 'postingbody'})
for validate in negative_keywords:
    if (string.find(str(bodyContents.string).lower(),validate) != -1):
        keyword_found = TRUE
        continue

这是样本数据

<section id="postingbody">


        3BR/2BA newly renovated ranch

<p>
    <b></b>
</p>
<hr></hr>
<h2>

    Some address

</h2>
<h2>

    $950.00 / Month

</h2>
<h3 style="color:maroon;">

    - Description:

</h3>
<blockquote>

    3BR/2BA newly renovated ranch. Near all that Towne…

</blockquote>
<h3 style="color:maroon;">

    - Details:

</h3>
<ul>
    <li></li>
    <li></li>
    <li>
        <b></b>

         No

    </li>
    <li></li>
    <li></li>
    <li></li>
    <li></li>

【问题讨论】:

    标签: python parsing python-2.7 html-parsing beautifulsoup


    【解决方案1】:

    我会这样做

    import BeautifulSoup
    
    negative_keywords = ['basement', 'unfinished', 'hardwood']
    
    html = '''
    <section id="postingbody">
        Looking for a corporate rental, this beautiful decorated 5 BR,
        4.5 BA two story house is in a desirable location, 7 minutes off
        I 85. Beautiful solid cherry cabinets in kitchen and laundry room.
        All stainless steel appliances. Hardwood floors in kitchen and foyer,
        Ceramic tile floors in all bathrooms, laundry room, dining room and sunroom.
    
        <br>
        </br>
    
    </section>
    '''
    
    soup = BeautifulSoup.BeautifulSoup(html)
    bodyContents = soup.find(attrs={'id' : 'postingbody'})
    
    if any([k in bodyContents.getText().lower() for k in negative_keywords]):
        print "keyword was found"
    

    【讨论】:

    • 仍然没有找到关键字。这是 bodyContents,应该与 bodyContents 中的“硬木”相匹配:
      寻找企业出租,这座装饰精美的 5 卧、4.5 卫两层楼房屋位于理想的位置,距 I 85 仅 7 分钟路程。厨房和洗衣房里漂亮的实心樱桃柜。全不锈钢器具。厨房和门厅铺设硬木地板,所有浴室、洗衣房、餐厅和日光浴室铺设瓷砖地板。
    猜你喜欢
    • 1970-01-01
    • 2019-02-12
    • 2020-04-21
    • 1970-01-01
    • 2019-11-16
    • 2012-09-16
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多