[Python] XML Create and Write
파이썬에서 XML 을 작성하는 방법입니다.
<rss version="2.0">
<channel>
<item>
<title>subject</title>
<title>description</title>
</item>
</channel>
</rss>
위와 같은 XML 을 만드는 코드입니다.
import xml.etree.ElementTree as xml
rss = xml.Element('rss')
rss.set('version', '2.0')
ch = xml.SubElement(rss, 'channel')
it = xml.SubElement(ch, 'item')
ti = xml.SubElement(it, 'title')
de = xml.SubElement(it, 'title')
ti.text = str('subject')
de.text = str('description')
xml.dump(rss)
xml.ElementTree(rss).write('rss.xml')
이 외에도 만드는 방법이 더 있습니다.
'Python' 카테고리의 다른 글
[CentOS] 7.x Apache + Python 연동 방법 (0) | 2018.12.21 |
---|---|
[Python] sitemap.xml 생성 방법 (0) | 2018.12.20 |
[Python] 티스토리 Open API 활용 access_token 값 가져오기 (0) | 2018.12.17 |
[Python] 한글이 있는 xml 파싱 UnicodeEncodeError (0) | 2018.12.14 |
[CentOS] Python requests 모듈 설치 (0) | 2018.12.14 |