An open API service indexing awesome lists of open source software.

https://github.com/reiver/go-xml

Package xml implements a simple XML 1.0 parser, for the Go programming language. It is meant to be a replacement to the built-in Go "encoding/xml" package.
https://github.com/reiver/go-xml

xml

Last synced: over 1 year ago
JSON representation

Package xml implements a simple XML 1.0 parser, for the Go programming language. It is meant to be a replacement to the built-in Go "encoding/xml" package.

Awesome Lists containing this project

README

          

# go-xml

Package **xml** implements a simple XML 1.0 parser, for the Go programming language.
It is meant to be a replacement to the built-in Go `"encoding/xml"` package.

## Documention

Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-xml

[![GoDoc](https://godoc.org/github.com/reiver/go-xml?status.svg)](https://godoc.org/github.com/reiver/go-xml)

## Import

To import package **xml** use `import` code like the follownig:
```
import "github.com/reiver/go-xml"
```

## Installation

To install package **xml** do the following:
```
GOPROXY=direct go get https://github.com/reiver/go-xml
```

## Author

Package **xml** was written by [Charles Iliya Krempeaux](http://reiver.link)