• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

goxpp-0068e33feabf/H12-Oct-2018-

.gitignoreH A D30-Aug-2019266

.travis.ymlH A D30-Aug-20191 KiB

LICENSEH A D30-Aug-20191 KiB

README.mdH A D30-Aug-20191,014

xpp.goH A D30-Aug-20197.2 KiB

README.md

1# goxpp
2
3[![Build Status](https://travis-ci.org/mmcdole/goxpp.svg?branch=master)](https://travis-ci.org/mmcdole/goxpp) [![Coverage Status](https://coveralls.io/repos/github/mmcdole/goxpp/badge.svg?branch=master)](https://coveralls.io/github/mmcdole/goxpp?branch=master) [![License](http://img.shields.io/:license-mit-blue.svg)](http://doge.mit-license.org)
4[![GoDoc](https://godoc.org/github.com/mmcdole/goxpp?status.svg)](https://godoc.org/github.com/mmcdole/goxpp)
5
6The `goxpp` library is an XML parser library that is loosely based on the [Java XMLPullParser](http://www.xmlpull.org/v1/download/unpacked/doc/quick_intro.html).  This library allows you to easily parse arbitary XML content using a pull parser.  You can think of `goxpp` as a lightweight wrapper around Go's XML `Decoder` that provides a set of functions that make it easier to parse XML content than using the raw decoder itself.
7
8This project is licensed under the [MIT License](https://raw.githubusercontent.com/mmcdole/goxpp/master/LICENSE)
9
10