jeroen / jsonlite

A Robust, High Performance JSON Parser and Generator for R
http://arxiv.org/abs/1403.2805
Other
379 stars 40 forks source link

Look into `jq` #57

Open jeroen opened 10 years ago

jeroen commented 10 years ago

This would be a really cool addition:

curl('https://api.github.com/repos/stedolan/jq/commits?per_page=5') %>% 
  jq('.[0] | {message: .commit.message, name: .commit.committer.name}') %>%
  stream_in(function(){...})
sckott commented 9 years ago

+1 - i tried to replicate what jq does in native R w/o wrapping the C library, but I imagine you envision just wrapping the C library

sckott commented 9 years ago

@jeroenooms we started working on jq using the C library https://github.com/ropensci/jqr

jeroen commented 9 years ago

Cool!