기본적인 xml의 읽기 쪽 관련 항목은 다음 내용을 참고해주세요.

smart-west.tistory.com/75

 

[ Pthon ] xml 파일 읽기 / 분석 / 출력 하기

파이썬에서 xml 처리를 위해서는 ElementTree를 활용합니다. import xml.etree.ElementTree as elemTree 먼저 xml 데이터 인지 파일인지 확인이 필요합니다. 파일에서 읽어 오는 단계인 경우 아래와 같이 작업하

smart-west.tistory.com

 

먼저 불러온 파일은 다음 방식으로 편집이 가능합니다.

 

for nnn in root.iter("태그")
	new_nnn = int(nnn.text)+1
    nnn.text = str(new_nnn)
    nnn.attrib["속성"] = "aaa"
    nnn.set("속성" , "aaa")

 

태그 삭제를 위해서는 다음과 같이 진행 합니다.

root.remove("태그")

 

 

파일로 쓰는 방법은 다음과 같습니다.

 

doc.write("write_value.xml" , encoding = "utf-8" , xml_declaration= True)

 

 

 

+ Recent posts