Python Forum
[SOLVED] [BeautifulSoup] Why does it turn inserted string's brackets into </>?
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[SOLVED] [BeautifulSoup] Why does it turn inserted string's brackets into </>?
#1
Hello,

One more before I go to bed…

No matter what I try, BS turns the brackets of the LS string into "<" and ">" instead of keeping them as is:

from bs4 import BeautifulSoup 

soup = BeautifulSoup(open('input.kml', 'r'), 'xml')

LS = "<Style><LineStyle><color>FF0000FF</color><width>6</width></LineStyle></Style>"

for ls in soup.find_all("LineString"):
	parent = ls.parent

	#BAD parent.insert(0,LS)
	#BAD parent.insert(0,LS.encode(formatter="html"))
	#BAD parent.insert(0,str(LS)) 

print(soup.prettify())
Thank you.

--
Edit: Found a solution

print(soup.prettify(formatter=None))
with open(OUTPUTFILE, "w") as file:
    #file.write(str(soup))
    file.write(soup.prettify(formatter=None))
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [SOLVED] [BeautifulSoup] Why attribute not found? Winfried 0 753 Mar-11-2023, 10:00 PM
Last Post: Winfried
  [SOLVED] [Beautifulsoup] Find if element exists, and edit/append? Winfried 2 4,312 Sep-03-2022, 10:14 PM
Last Post: Winfried
  [SOLVED] [BeautifulSoup] Turn select() into comma-separated string? Winfried 0 1,124 Aug-19-2022, 08:07 PM
Last Post: Winfried
  [SOLVED] [BeautifulSoup] How to get this text? Winfried 6 1,995 Aug-17-2022, 03:58 PM
Last Post: Winfried
  Inserting line feeds and comments into a beautifulsoup string arbiel 1 1,191 Jul-20-2022, 09:05 AM
Last Post: arbiel
  Adding string after every 3rd charater [SOLVED] AlphaInc 2 1,260 Jul-11-2022, 09:22 AM
Last Post: ibreeden
  Reading list items without brackets and quotes jesse68 6 4,649 Jan-14-2022, 07:07 PM
Last Post: jesse68
  Data pulled from SQL comes in brackets nickzsche 3 2,679 Jan-04-2022, 03:39 PM
Last Post: ibreeden
  For Loop and Use of Brackets to Modify Dictionary in Tic-Tac-Toe Game new_coder_231013 7 2,272 Dec-28-2021, 11:32 AM
Last Post: new_coder_231013
Question [SOLVED] Delete specific characters from string lines EnfantNicolas 4 2,232 Oct-21-2021, 11:28 AM
Last Post: EnfantNicolas

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020