[Python] sitemap.xml 생성 방법
파이썬으로 사이트맵 파일을 만드는 방법입니다.
<?xml version='1.0' encoding='utf-8'?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://ivps.tistory.com</loc>
<changefreq>always</changefreq>
<priority>1.0</priority>
</url>
</urlset>
위와 같은 파일을 파이썬으로 코딩하면 아래와 같습니다.
import xml.etree.ElementTree as xml
sitemap = xml.Element('urlset')
sitemap.set('xmlns', 'http://www.sitemaps.org/schemas/sitemap/0.9')
x1_1st = xml.SubElement(sitemap, 'url')
x2_lo = xml.SubElement(x1_1st, 'loc').text = 'https://ivps.tistory.com'
x2_ch = xml.SubElement(x1_1st, 'changefreq').text = 'always'
x2_pr = xml.SubElement(x1_1st, 'priority').text = '1.0'
칼라 부분이 키포인트이네요~
'Python' 카테고리의 다른 글
[Python] 이미지 파일의 MIME TYPE 알아내는 방법 (0) | 2018.12.26 |
---|---|
[CentOS] 7.x Apache + Python 연동 방법 (0) | 2018.12.21 |
[Python] XML Create and Write (0) | 2018.12.18 |
[Python] 티스토리 Open API 활용 access_token 값 가져오기 (0) | 2018.12.17 |
[Python] 한글이 있는 xml 파싱 UnicodeEncodeError (0) | 2018.12.14 |