How can I simply strip all tags from an element I find in BeautifulSoup?
it looks like this is the way to do! as simple as that
with this line you are joining together the all text parts within the current element
''.join(htmlelement.find(text=True))