python - using BeautifulSoup to insert an element before closing body -
what efficient way insert element last 1 in body
of html page?
see answer previous question along same lines:
the following should insert fine:
soup.body.insert(len(soup.body.contents), yourelement)
Comments
Post a Comment