how to get the context following a Keyword search in BeautifulSoup?

108 Views Asked by At

I am trying to get the context following the "RESPONSIBILITIES". But I cannot finish it. How can I get the context without tag?

<strong>RESPONSIBILITIES:</strong>

<ul>

<li>Reach or exceed assigned sales goals</li>

<li>Implement sales strategies</li>

<li>Develop and execute a cold calling strategy to target prospects</li>

<li>Mine existing and prospective clients for referral business</li>

<li>Establish and maintain strong relationships, with both internal partners and external customers</li>

</ul>
1

There are 1 best solutions below

0
On

Following should work:

from bs4 import BeautifulSoup
import re
print soup.find('strong', text=re.compile('RESPONSIBILITIES:').find_next_sibling('ul').text