Skip to content

huberts90/go-rss

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple RSS parser, tested with various feeds.

License: Public Domain

## Installation

    go get github.com/ungerik/go-rss

## Usage


    import "github.com/ungerik/go-rss"

    channel, err := rss.Read("https://en.blog.wordpress.com/feed/")
    if err != nil {
    	fmt.Println(err)
    }

    fmt.Println(channel.Title)

    for _, item := range channel.Item {
      fmt.Println(item.Title)
    }

About

Simple RSS parser for Go

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%