Tcl & Tk/확장 패키지 (Extension Package)
TclRSS: RSS parser for Tcl 0.1
티클러
2025. 4. 15. 10:16
홈페이지: 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]
}