JSONParser: Parse JSON

[ bsd3, library, text ] [ Propose Tags ]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4
Change log ChangeLog.md
Dependencies base (<10000), parsec (<10000) [details]
License BSD-3-Clause
Author Alan Hawkins
Maintainer hawk.alan@gmail.com
Category Text
Source repo head: git clone http://github.com/xpika/JSONParser.git
Uploaded by AlanHawkins at 2019-05-22T09:44:27Z
Distributions NixOS:0.1.0.4
Reverse Dependencies 1 direct, 0 indirect [details]
Downloads 2540 total (14 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2019-05-22 [all 1 reports]

Readme for JSONParser-0.1.0.4

[back to package description]

JSONParser

usage:

$ cabal install JSONParser
$ ghci
Prelude> :m + Text.JSONParser Text.Parsec 
Prelude Text.JSONParser Text.Parsec> map (parse parser "") ["{ \"a\t\n\\u007F\" : [true] ,false:{null: -3.2e-5 }}"]
[Right (JObject [(JKeyString "a\t\n\DEL",JList [JSingle (JKeyBool True)]),(JKeyBool False,JObject [(JKeyNull,JSingle (JKeyNum (JNumFraction (-3.2000000000000005e-5))))])])]