Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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)
 
PREVIOUS NEXT
Tagged: #title #attribute #beautiful #soup
ADD COMMENT
Topic
Name
8+4 =