An open API service indexing awesome lists of open source software.

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

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)