Skip to content

A tiny Go package and executable to find RSS and Atom feed URLs from a Web page

License

Notifications You must be signed in to change notification settings

nlpodyssey/feedfinder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

feedfinder

A tiny Go package and executable to find RSS and Atom feed URLs from the content of a Web page.

Package usage example

package main

import (
    "fmt"
    "github.com/nlpodyssey/feedfinder"
    "log"
)

func main() {
    feeds, err := feedfinder.FindFeeds("https://blog.golang.org")
    
    if err != nil {
        log.Fatal(err)
    }
    
    for _, feed := range feeds {
        fmt.Println(feed)
    }
}

Command line example

feedfinder https://blog.golang.org

License

Feedfinder is licensed under the BSD 2-Clause "Simplified" License.

About

A tiny Go package and executable to find RSS and Atom feed URLs from a Web page

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages