Skip to content

Go (golang) package that provides functions for finding RSS/Atom feeds in a web page.

License

Notifications You must be signed in to change notification settings

gilliek/go-feedsfinder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Feeds Finder

Build Status

Feeds finder is Go package that provides functions for finding RSS/Atom feeds in a web page.

Installation

go get github.com/gilliek/go-feedsfinder/feeds

Usage

Typical usage:

package main

import (
	"fmt"
	"log"

	"github.com/gilliek/go-feedsfinder/feeds"
)

func main() {
	links, err := feeds.FindFromURL("http://www.example.com")
	if err != nil {
		log.Fatal(err)
	}

    fmt.Println(links)

    //...
}

Output:

[{http://blog.golang.org/feed.atom atom}]

See the document for more details.

Documentation

Document can be found on GoWalker or GoDoc

License

BSD 3-clauses

About

Go (golang) package that provides functions for finding RSS/Atom feeds in a web page.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages