package ezjsonm-lwt

  1. Overview
  2. Docs
An easy interface on top of the Jsonm library

Install

Dune Dependency

Authors

Maintainers

Sources

ezjsonm-0.5.0.tbz
md5=3a081dee6fc0cc0ce9462986888fa0bf

Description

This version provides more convenient (but far less flexible) input and output functions that go to and from [string] values. This avoids the need to write signal code, which is useful for quick scripts that manipulate JSON.

More advanced users should go straight to the Jsonm library and use it directly, rather than be saddled with the Ezjsonm interface.

Tags

org:mirage org:ocamllabs

Published: 26 May 2017

README

Ezjsonm

An easy interface on top of the Jsonm library.

This version provides more convenient (but far less flexible) input and output functions that go to and from [string] values. This avoids the need to write signal code, which is useful for quick scripts that manipulate JSON.

More advanced users should go straight to the Jsonm[1] library and use it directly, rather than be saddled with the Ezjsonm interface.

Examples

For instance, you can explore the HTTP status code specified in the JSON format here. After downloading that file, you can open an OCaml toplevel and write:

# #require "ezjsonm";;
# let json = Ezjsonm.from_channel (open_in "4.json");;
# Ezjsonm.(get_string (find json ["codes"; "418"; "summary"]))
- : string = "I'm a teapot"

Dependencies (8)

  1. lwt >= "2.5.0"
  2. hex
  3. sexplib
  4. jsonm >= "0.9.1"
  5. jbuilder >= "1.0+beta9"
  6. ocamlfind build
  7. ezjsonm = "0.5.0"
  8. ocaml < "4.06.0"

Dev Dependencies (1)

  1. alcotest with-test & >= "0.4.0"

Used by

None

Conflicts

None