You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
http://jsonlines.org/ is mostly a description of something people do anyway, namely "print json.dumps() is easier to parse than print" - it would be useful to have jsonpipe support this.
The trivial and useful (but horrible) shell workaround is
$ cat foo.jsonlines | while read -r J; do echo -n $J | jsonpipe; done
I'm suggesting either a -l option to explicitly say "restart the parser" or some implicit "the parser completed, start it with fresh state" mechanism.
The text was updated successfully, but these errors were encountered:
http://jsonlines.org/ is mostly a description of something people do anyway, namely "
print json.dumps()
is easier to parse thanprint
" - it would be useful to have jsonpipe support this.The trivial and useful (but horrible) shell workaround is
I'm suggesting either a
-l
option to explicitly say "restart the parser" or some implicit "the parser completed, start it with fresh state" mechanism.The text was updated successfully, but these errors were encountered: