Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

beautifulsoup find text inside tag

elem_found = soup.find(elem) # Find element
if elem_found:
	text = elem_found.text	# Get text of found element
 
PREVIOUS NEXT
Tagged: #beautifulsoup #find #text #tag
ADD COMMENT
Topic
Name
7+9 =