I\'m using beautifulsoup and want to extract all text from between two words on a webpage.
Ex, imagine the following website text:
This is the text of t
since you're just parsing the text you just need the regex:
import re result = re.findall("text.*?bunch", text_from_web_page)