edn-format parsers (eg, Common Lisp)?

2013-07-09 Thread Rich Morin
I'm intrigued by edn (extensible data notation), as described here: https://github.com/edn-format/edn It seems cleaner and more expressive than JSON, so I'm looking into using it for a current project. However, I haven't seen a summary of parser and/or generator implementations for this format

Re: edn-format parsers (eg, Common Lisp)?

2013-07-09 Thread Ben Smith-Mannschott
Perhaps you've not seen this: https://github.com/edn-format/edn/wiki/Implementations (But there's no CL implementation listed there.) //Ben On Tuesday, July 9, 2013, Rich Morin wrote: > I'm intrigued by edn (extensible data notation), as described here: > > https://github.com/edn-format/edn

Re: edn-format parsers (eg, Common Lisp)?

2013-07-09 Thread Rich Morin
On Jul 9, 2013, at 13:37, Ben Smith-Mannschott wrote: > Perhaps you've not seen this: > > https://github.com/edn-format/edn/wiki/Implementations > > (But there's no CL implementation listed there.) Yep; I had missed that. Thanks! -r -- http://www.cfcl.com/rdmRich Morin http://ww

Re: edn-format parsers (eg, Common Lisp)?

2013-07-10 Thread vrakade
This is an aside, but I wanted to add about translations... An EDN "generator" is somewhat redundant from Clojure, but I usually use fipp for standard formatting: https://github.com/brandonbloom/fipp Also clj-yaml for YAML output, and Chesire or data.json for JSON. (Note data.json has trouble w

Re: edn-format parsers (eg, Common Lisp)?

2013-07-10 Thread Colin Fleming
Thanks for the pointer to fipp, that actually looks like just what I need! Fantastic. On 11 July 2013 13:58, wrote: > This is an aside, but I wanted to add about translations... > > An EDN "generator" is somewhat redundant from Clojure, but I usually use > fipp for standard formatting: https://