Command-line Data Processor for EDN, YAML, JSON, XML and other data formats.
The joy of Clojure's threading macros, but on the command line!
May or may not have invented the Hash-Pipe #|
operator π (citation needed)
brew install markus-wa/brew/cq
scoop bucket add scoop-clojure
scoop install scoop-clojure/cq
- Download the latest version for your OS from the releases page.
- note: you should avoid
cq-jvm
if possible as these are not GraalVM native images and will be slow to start.
- note: you should avoid
- Rename binary to
cq
chmod +x cq
- Move into a location on
$PATH
While there are a few similar, amazing tools out there (such as jq
, jet
or babashka
), cq
tries to resolve some of their shortcomings such as having to learn custom query languages, lacking powerful data transformation libraries or quick and easy (yes I said the e word) handling of many input and output formats.
cq aims to:
- Not require learning yet another query language - it's just
dataClojure! - Give the user complete power for writing queries, with as few limitations as possible
- Provide various input and output formats out of the box
- Be opinionated, ship useful tools/libraries pre-bundled
- Supports all elements of Clojure that are supported by SCI
- Data Formats:
- EDN
- YAML
- JSON
- XML
- MsgPack
- CSV
- Cognitec's Transit format
- Text (raw and line-separated)
- HTML (via Hickory)
- Various reader macros that make writing queries easier
- Threading macro redirection reduces need for parentheses
- Coloured output / syntax highlig for EDN output
- No startup lag thanks to GraalVM native-images
- Comes batteries-included with the following libraries for transforming nested data structures and utilities
$ cq --help
cq is a command-line data processor for JSON, YAML, EDN and other data formats that utilises Clojure as it's query language.
Usage: cq [options] [--] QUERY
Examples
echo '{a: {b: [1, 2, 3]}}' | cq ':a :b (map inc)'
printf 'http://example.com/some/path' | cq -i text -- '-> str/upper-case (str/split #"/") ->> (map str/reverse)'
Options:
-i, --in FORMAT yaml Input format: csv, edn, json, lines, msgpack, text, transit, yaml, html
-o, --out FORMAT edn Output format: csv, edn, json, lines, msgpack, text, transit, yaml, html
-p, --[no-]pretty Pretty print output - default is true
--color COLOR auto When pretty printing, whether to use colors: auto, off, on - default is auto
-c Same as --color=on
-C Same as --color=off
-k, --key-fn FN keyword Function used to transform keys - currently only supported for JSON and CSV
--yaml-unsafe Enables unsafe mode in clj-yaml / SnakeYAML
--[no-]yaml-keywords Turn map keys into keywords in clj-yaml - default is true
--yaml-max-aliases-for-collections Sets max aliases for collections in clj-yaml / SnakeYAML
--yaml-allow-recursive-keys Allows recursive keys in clj-yaml / SnakeYAML
--yaml-allow-duplicate-keys Allows duplicate keys in clj-yaml / SnakeYAML
--yaml-flow-style STYLE auto Sets flow style in SnakeYAML: auto, block, flow
--transit-format-in FORMAT json Set the reader type for transit: json, json-verbose, msgpack
--transit-format-out FORMAT json Set the writer type for transit: json, json-verbose, msgpack
-h, --help
See https://github.com/markus-wa/cq for more information.
By default cq
uses thread last (->>
) semantics.
$ echo '{"a": {"b": [1, 2, 3]}}' | cq ':a :b (map inc)'
(2 3 4)
You can use clojure.instant
(alias inst
) to parse timestamps.
$ echo '{"a": "2023-03-11T03:01:11.000Z"}' | cq :a inst/read-instant-timestamp
#inst "2023-03-11T03:01:11.000-00:00"
Using #|
you can use the current value as .
.
$ curl -s 'https://api.github.com/repos/markus-wa/cq/commits?per_page=5' | \
cq 'second #| {:author (-> . :commit :author :name) :message (-> . :commit :message) :parents (->> . :parents (map :html_url))}'
{:author "Markus Walther",
:message "tests: fix coloured output breaking tests",
:parents ("https://github.com/markus-wa/cq/commit/92ff81edbd6f53f0d20aa5a18ccf6cac53bbe50e")}
There's also a destructuring macro #&
to make using (let)
easier.
$ printf "http://example.com/some/path" | \
cq -i text -- '-> (str/split #"/") #& ([protocol _ host] {:protocol protocol :host host})'
{:protocol "http:", :host "example.com"}
#f
can be used to simplify creating an anonymous function that returns a value, rather than calls a function.
Also note how m/map-kv
is provided by medley.core
.
$ echo '{a: {b: 2, c: 3}}' | cq ':a (m/map-kv #f [%2 %1])'
{2 :b, 3 :c}
While things like ->->><?as->cond->!
are pretty funny,
it can be pretty convenient to just redirect a threading macro when you're working on a simple terminal without paredit.
All threading operators will change the query after that point to their implementation until followed by any other threading operator (no need for parentheses).
Note that threading redirection is currently only supported on the top level, not in nested threading macros.
$ printf "http://example.com/some/path" | \
cq -i text -- '-> str/upper-case (str/split #"/") ->> (map str/reverse)'
(":PTTH" "" "MOC.ELPMAXE" "EMOS" "HTAP")
Currently supported threading operators for redirection:
->
thread first->>
thread lastsome->
thread somesome->>
thread some lastas->
thread with var name
Library | Namespace | Alias | Example Query |
---|---|---|---|
tolitius/xml-in |
xml-in.core |
xml-in |
#| (xml-in/find-all . [:universe :system :solar :planet]) |
medley |
medley.core |
m |
(m/mak-kv (fn [k v] [v k])) |
com.rpl/specter |
com.rpl.specter |
s |
(s/transform [MAP-VALS MAP-VALS] inc) |
camel-snake-kebab |
camel-snake-kebab.core |
csk |
csk/->SCREAMING_SNAKE_CASE |
clojure.instant |
clojure.instant |
inst |
inst/read-instant-timestamp |
clojure.data.csv |
clojure.data.csv |
csv |
csv/read-csv |
clojure.data.json |
clojure.data.json |
json |
json/read-str |
clojure.data.xml |
clojure.data.xml |
xml |
xml/parse-str |
This table explains the different reader macros provided by cq
.
<f>
is the form passed in after the reader macro.
Reader Macro | Description | Interpolates to | Example |
---|---|---|---|
#| <f> |
Hash-Pipe π: Use the current value as . |
((fn [.] <f>)) |
#| (< 5 . 10) |
#map <f> |
Map elements of a seq | (map (fn [.] <f>)) |
#map {:a (:a .) :first-child (-> . :children first)} |
#& (<d> <f...>) |
Destructor: Destructure into vars | ((fn [.] (let [<d> .] <f>) |
#& ({:keys [a b c]} [a b c]}) |
#f <f> |
Anonymous function, returns value of f, not evaluation of f | #(do <f>) |
(map-kv #f [%2 %1]) |
Pretty printing can be pretty slow with the JSON and EDN libraries we use. one trick is to use cq
for querying and jq
for formatting.
E.g. this is pretty fast
cat data.yaml | cq -o json --no-pretty | jq
- maybe Parquet support
This project takes a lot of inspiration from jq
, jet
and babashka
This project is licensed under the EPL-2.0 License.