Revised README and added example.go with a small idiomatic example on how to use this package.

This commit is contained in:
jim teeuwen 2011-05-21 19:12:43 +02:00
parent 09a1cbe77d
commit 9957923226
2 changed files with 59 additions and 2 deletions

19
README
View file

@ -1,5 +1,6 @@
Author: jim teeuwen <jimteeuwen@gmail.com>
Dependencies: go-pkg-xmlx ( http://github.com/jteeuwen/go-pkg-xmlx )
================================================================================
RSS
================================================================================
This package allows us to fetch Rss and Atom feeds from the internet.
They are parsed into an object tree which is a hybrid of both the RSS and Atom
@ -29,3 +30,17 @@ either a new channel or a new item is found that previously did not exist.
This allows you to easily monitor a feed for changes. See src/feed_test.go for
an example of how this works.
================================================================================
DEPENDENCIES
================================================================================
goinstall github.com/jteeuwen/go-pkg-xmlx
================================================================================
USAGE
================================================================================
$ goinstall github.com/jteeuwen/go-pkg-rss
An idiomatic example program can be found in example.go.