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
Question [Solved] Getting python's default 'printed' byte-string as string ? MvGulik 8 136 Apr-06-2026, 09:16 AM
Last Post: Dustbunny
Photo Running Brackets code Jojogeno 2 89 Feb-13-2026, 10:30 AM
Last Post: buran
Question [SOLVED] Open file, and insert space in string? Winfried 7 2,524 May-28-2025, 07:56 AM
Last Post: Winfried
Question [SOLVED] [Beautiful Soup] Replace tag.string from another file? Winfried 2 1,673 May-01-2025, 03:43 PM
Last Post: Winfried
  gpiozero button turn off LED that is already on duckredbeard 3 1,885 Dec-11-2024, 06:23 PM
Last Post: duckredbeard
  [SOLVED] Sub string not found in string ? jehoshua 4 2,311 Dec-03-2024, 09:17 PM
Last Post: jehoshua
Question [SOLVED] How to replace characters in a string? Winfried 2 1,957 Sep-04-2024, 01:41 PM
Last Post: Winfried
  [SOLVED] [BeautifulSoup] Why are some elements ignored? Winfried 5 2,941 Sep-04-2024, 09:34 AM
Last Post: Winfried
  Exceeding the value - turn on the relay. stsxbel 0 963 May-27-2024, 07:18 PM
Last Post: stsxbel
  [SOLVED] [BeautifulSoup] Why attribute not found? Winfried 0 1,692 Mar-11-2023, 10:00 PM
Last Post: Winfried

Forum Jump:

User Panel Messages

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