goj / exml

XML parsing library in Erlang

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

exml

Build Status

exml is an Erlang library helpful with parsing XML streams and doing some basic XML structures manipulation.

Building

exml is rebar-compatible OTP application, run make or ./rebar compile in order to build it.

As a requirement, development headers for expat library are required.

Using

exml can parse both XML streams as well as single XML documents at once.

At first, new parser instance must be created:

    {ok, Parser} = exml:new_parser().

Then, one must feed parser with XML document:

    ok = exml:parse(Parser, <<"">>, 1).

About

XML parsing library in Erlang

License:Apache License 2.0


Languages

Language:Erlang 78.5%Language:C 21.5%