Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gravityblast/feedfinder
Discovers feed links on web pages (#go #golang)
https://github.com/gravityblast/feedfinder
Last synced: about 9 hours ago
JSON representation
Discovers feed links on web pages (#go #golang)
- Host: GitHub
- URL: https://github.com/gravityblast/feedfinder
- Owner: gravityblast
- License: mit
- Created: 2014-04-30T16:42:07.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-07T14:17:42.000Z (almost 10 years ago)
- Last Synced: 2023-07-11T21:14:44.446Z (over 1 year ago)
- Language: Go
- Homepage:
- Size: 176 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Feedfinder
[![Build Status](https://travis-ci.org/pilu/feedfinder.png?branch=master)](https://travis-ci.org/pilu/feedfinder)
Feedfinder is a [Go](http://golang.org/) library that you can use to discover feed links on web pages.
```go
package mainimport (
"fmt"
"log""github.com/pilu/feedfinder"
)func main() {
links, err := feedfinder.Find("http://blog.golang.org")
if err != nil {
log.Fatal(err)
}for _, link := range links {
fmt.Printf("%s (%s): %s\n", link.Title, link.Type, link.URL.String())
}
}
```## Author
* [Andrea Franz](http://gravityblast.com)