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 a 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]

Modules

[Last Documentation]

  • Text
    • JSON
      • Text.JSON.Escape
    • Text.JSONb
      • Text.JSONb.Decode
      • Text.JSONb.Encode
      • Text.JSONb.Schema
        • Text.JSONb.Schema.Display
      • Text.JSONb.Simple

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-09-28T09:22:04Z
Distributions
Reverse Dependencies 3 direct, 331 indirect [details]
Executables json-schema
Downloads 3687 total (16 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs not available [build log]
All reported builds failed as of 2016-12-31 [all 6 reports]

Readme for json-b-0.0.0

[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.