JuliaIO / JSON.jl

JSON parsing and printing
Other
313 stars 101 forks source link

Reader generalization #169

Open TotalVerb opened 8 years ago

TotalVerb commented 8 years ago

After #165, to implement #168 properly still requires reader support. A similar analogous as done for writers can be done for readers also. The big roadblocks here are:

TODO list:

dnadlinger commented 6 years ago

Any progress on this in the meantime? I need to handle a Python-generated file that contains both NaN as a number (violating the JSON spec) and "NaN" as a string. Currently, I'm using Python's parser via PyCall to get around this, but obviously I'd rather like to avoid that.