본문으로 바로가기

홈페이지: http://nul.jp/2003/tclrss/

 

TclRSS는 RSS 파일 구문 분석/생성을 위한 Tcl 확장 패키지입니다.

package require rss

set f [open rss.xml]
fconfigure $f -encoding utf-8
set rawrss [read $f]
close $f

set channel [rss::parse $rawrss]
puts "Feed:[$channel title]"
foreach item [$channel items] {
	puts [$item title]
}

tclrss-0.1.zip
0.01MB

'Tcl & Tk > 확장 패키지 (Extension Package)' 카테고리의 다른 글

LED 0.0.2  (0) 2025.04.17
tcom 3.10b5  (0) 2025.04.17
taccle 1.1  (0) 2025.04.15
fickle 2.04  (0) 2025.04.15
TclCurl 7.22.1  (0) 2025.04.15