jqr icon indicating copy to clipboard operation
jqr copied to clipboard

R interface to jq

Results 16 jqr issues
Sort by recently updated
recently updated
newest added

This is an issue or perhaps feature request related to having jqr support raw output from jq, with non-json return type. The use case is to use jqr to "push...

The following code returns "12" instead of "1" and "2" separately ``` r as.character(jqr::jq(c("1", "2"))) #> [1] "12" # expected # [1] "1" "2" ``` Created on 2020-01-24 by the...

Hi, I'm trying to install jqr in my centOS8 VM and this is the result: ``` trying URL 'https://cran.mirror.garr.it/CRAN/src/contrib/jqr_1.1.0.tar.gz' Content type 'application/octet-stream' length 411600 bytes (401 KB) ================================================== downloaded 401...

It would be nice to be able to run a jq pipe from a connection (such as a URL, file or fifo), so that one can avoid loading all the...

The following gives an jq error but the error is actually not thrown. Further, we get a length 1 vector instead of a length 2 as expected. ``` r jqr::jq(c('{"a":...

see the flags under https://stedolan.github.io/jq/manual/#Invokingjq section - @richfitz do you know if this is possible? Some of them I think only make sense on the command line outside of R,...

It looks like the return type of a `jq` query is a `jqson` object, which is essentially a string. I think it would be way more useful for `jq` to...

When using jqr on largish inputs, I'm finding frequent `protection stack overflow` errors. Here's a simple reprex with 100,000 input strings (on my machine): ```R > foo % jqr::jq("{a,b,c}") ```...

Sometimes you don't want to pipe together jq commands. But right now, that's the only option when we `%>%` together commands, they get `|` together Would be nice to have...

`--stream` and `--seq`