Is it possible to set markup as tag content (akin to setting innerHtml
in JavaScript)?
For the sake of example, let's say I want to add 10 <a>
elements to a <div>
, but have them separated with a comma:
soup = BeautifulSoup(<<some document here>>)
a_tags = ["<a>1</a>", "<a>2</a>", ...] # list of strings
div = soup.new_tag("div")
a_str = ",".join(a_tags)
Using div.append(a_str)
escapes <
and >
into <
and >
, so I end up with
<div> <a1> 1 </a> ... </div>
BeautifulSoup(a_str)
wraps this in <html>
, and I see getting the tree out of it as an inelegant hack.
What to do?
You need to create a
BeautifulSoup
object out of yourHTML
string containing links:Prints:
Alternative solution:
For each link create a
Tag
and append it todiv
. Also, append a comma after each link except last:Prints: