Convert </br> to end line
As official doc says:
You can specify a string to be used to join the bits of text together: soup.get_text("\n")
You can do this using the BeautifulSoup object itself, or any element of it:
for br in soup.find_all("br"):
br.replace_with("\n")
A regex should do the trick.
import re
s = re.sub('<br\s*?>', '\n', yourTextHere)
Hope this helps!