Right on! Thank you.
============
from bs4 import BeautifulSoup as BS
from pathlib import Path
INPUTFILE = "input.kml"
BASE = Path(INPUTFILE).stem
OUTPUTFILE = f"{BASE}.OUTPUT.kml"
with open(INPUTFILE, mode='rb') as file:
fileContent = file.read()
soup = BS(fileContent, features="xml")
mg = soup.find('MultiGeometry') #if not found, check upper/lowercase
if mg:
newtag = mg.unwrap()
outp=open(OUTPUTFILE, 'w',encoding='utf-8')
outp.write(soup.prettify())
outp.close()
else:
print("Not found")
============