Skip to content
forked from gilliek/go-opml

Go (golang) package for parsing OPML files

License

Notifications You must be signed in to change notification settings

oxtyped/go-opml

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

49 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

go-opml

Build Status

go-opml aims to be a Go package for parsing OPML files.

This library is forked from https://github.com/gilliek/go-opml to add the following new features

Features

  • Ability to generate a new OPML file from scratch
  • Ability to add a RSS Feed from URL into an existing OPML struct

Installation

go get github.com/oxtyped/go-opml/opml

Usage

Parse OPML from file:

package main

import (
	"fmt"
	"log"

	"github.com/oxtyped/go-opml/opml"
)

func main() {
	doc, err := opml.NewOPMLFromFile("path/to/file.xml")
	if err != nil {
		log.Fatal(err)
	}

    xml, _ := doc.XML()
	fmt.Println(xml)

    //...
}

Parse OPML from URL:

package main

import (
	"fmt"
	"log"

	"github.com/oxtyped/go-opml/opml"
)

func main() {
	doc, err := opml.NewOPMLFromURL("http://www.example.com/file.xml")
	if err != nil {
		log.Fatal(err)
	}

    xml, _ := doc.XML()
	fmt.Println(xml)

    //...
}

Generate a new OPML file from scratch and add RSS feeds manually:

package main

import (
	"fmt"
	"log"

	"github.com/oxtyped/go-opml/opml"
)

func main(){

  doc := opml.NewOPMLFromBlank("title of OPML file")

  doc.AddRSSFeedFromURL("http://www.example.com/rss.xml")

  xml, _ := doc.XML()
  fmt.Println(xml)

  //...
}

Documentation

Document can be found on GoWalker or GoDoc

License

BSD 3-clauses

About

Go (golang) package for parsing OPML files

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 96.2%
  • Makefile 3.8%