TclRSS

TclRSS is a Tcl extension for parsing/generating RSS files.

Download

TclRSS 0.1
Initial release

Example

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]
}

See also

Relax NG schema for RSS 0.91 is available.

http://nul.jp/2003/tclrss/
ether@mbg.sphere.ne.jp
Created: 2003-06-28
Last updated: 2003-06-29