json-b: JSON parser that uses byte strings.

[ bsd3, library, program, text ] [ Propose Tags ]

This parser consumes lazy ByteStrings to produce JSON in a simple, efficient format backed with strict ByteStrings, Rationals and ByteString tries. See the schema generation tools and the command line JSON schema generator (in the examples subdir) for an example of how to use the parsing tools.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.0, 0.0.1, 0.0.2, 0.0.3, 0.0.4
Dependencies base (>=2 && <4), bytestring (>=0.9), bytestring-nums (>=0.3.1), bytestring-trie (>=0.1.4), bytestringparser-temporary (>=0.4.1), containers, utf8-string (>=0.3) [details]
License BSD-3-Clause
Author Jason Dusek
Maintainer jsonb@solidsnack.be
Category Text
Home page http://github.com/jsnx/JSONb/
Uploaded by JasonDusek at 2009-10-01T09:03:44Z
Distributions
Reverse Dependencies 3 direct, 331 indirect [details]
Executables json-schema
Downloads 3681 total (13 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for json-b-0.0.4

[back to package description]
  JSONb is a library for parsing JSON from lazy ByteStrings. It assumes the
  input is UTF-8.


                                                                    Test Suite
   ----------------------------------------------------------------------------

    We test the library by:

   .  Pulling down large amounts of JSON from various web service providers.

   .  Parsing and unparsing the JSON with our parser.

   .  Feeding the original JSON along with our unparsed variety to the
      json.org parser.

   .  Testing that our parsed-unparsed JSON parses to the same JavaScript
      values as the original JSON from the point of view of the json.org
      parser.