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

https://github.com/tarantool/luarapidxml

A fast XML parser for Tarantool based on rapidxml
https://github.com/tarantool/luarapidxml

Last synced: about 1 year ago
JSON representation

A fast XML parser for Tarantool based on rapidxml

Awesome Lists containing this project

README

          



# Fast XML parsing module for Tarantool

## Usage

```console
tarantool> xml = require('luarapidxml')
---
...

tarantool> xml.decode('')
---
- tag: luarapidxml
attr:
version: 1.0.0
1:
tag: rocks

tarantool> xml.encode({tag = 'input', attr = {type='text', name='password'}})
---
-
...

```