https://github.com/pyk/syndication
A simple RSS & Atom feed reader written in Go language
https://github.com/pyk/syndication
Last synced: 10 months ago
JSON representation
A simple RSS & Atom feed reader written in Go language
- Host: GitHub
- URL: https://github.com/pyk/syndication
- Owner: pyk
- Created: 2015-05-02T02:26:28.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-05-02T14:48:14.000Z (about 11 years ago)
- Last Synced: 2025-02-07T17:22:44.735Z (over 1 year ago)
- Language: Go
- Size: 121 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Syndication
`syndication` is a simple RSS & Atom feeds reader written in Go language.
### Goal
- simple, easy to use
- using standart libs only
### Blueprint
var content syndication.Content
s := syndication.NewReader(io.Reader) // usually response body
err := s.Read(&content)
if err != nil {
fmt.Printf("syndication.Read error: %v\n", err)
}
fmt.Printf("Syndication content: %#v\n", content)