https://github.com/gravityblast/feedfinder
Discovers feed links on web pages (#go #golang)
https://github.com/gravityblast/feedfinder
Last synced: 9 months 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 (about 12 years ago)
- Default Branch: master
- Last Pushed: 2015-01-07T14:17:42.000Z (over 11 years ago)
- Last Synced: 2025-06-25T10:54:29.251Z (11 months ago)
- Language: Go
- Homepage:
- Size: 176 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Feedfinder
[](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 main
import (
"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)