tags:

views:

72

answers:

1

I'm looking for a pure Lua library for parsing XML files. It doesn't have to be a validating parser, and it doesn't matter if it's DOM or SAX.

The best resource I've found so far is the Lua Users wiki page on XML libraries (which seems to be down as I type this; check the Google Cache version for now). What experience have you had with the code on this page?

+2  A: 

For a Lua-only solution, I've heard that LuaXML is good (there are two libraries with the same name, one in pure Lua and other with a C module).

I'm currently using LuaExpat, that are bindings to the well know Expat XML parser.

Kknd
I'll probably look at LuaXML. As I said, I need a Lua-only solution. It's kind of disconcerting that the library may be considered abandonware.
AJM