Answers for "beautifulsoup find and return text element"

0

beautifulsoup find by text

soup.find_all("a", string="Elsie")
# [<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>]
Posted by: Guest on September-17-2020
1

get title attribute beautiful soup

for body in message.find_all('div', {'class': 'body'}):
  # grab div by class name
  if body.find('div', {'class': 'date'}):
    text = body.find('div', {'class': 'date'})
    # find div by 'title' attribute
    title = text.get('title', 'No title attribute')
    print(title)
Posted by: Guest on February-02-2020

Code answers related to "beautifulsoup find and return text element"

Browse Popular Code Answers by Language