Results for data

10 tools · 9 with a matching recipe

miller

CLI

Like awk/sed/cut/join/sort for name-indexed data (CSV, JSON, TSV).

Filter CSV rows by condition~97% est.
mlr --csv filter '$age > 30' data.csv+2 more matching recipes
data3 recipes

curl

CLI

Transfer data from or to a server using various protocols.

Call an API and pick a value with jqVerified macOS · Linux
curl -s https://api.example.com/data | jq '.items | length'
networking8 recipes · 7 verified

csvkit

CLI

A suite of utilities for converting and working with CSV files.

Get stats on a CSV file~98% est.
csvstat data.csv+2 more matching recipes
data3 recipes

nushell

CLI

A new type of shell that understands structured data.

shell3 recipes

awk

CLI

Pattern-scanning and text-processing language.

Filter rows by condition~97% est.
awk '$3 > 100' data.txt+1 more matching recipe
text-processing4 recipes

duckdb

CLI

In-process analytical SQL database engine.

Query CSV with SQL~98% est.
duckdb -c "SELECT count(*), avg(price) FROM 'data.csv'"+1 more matching recipe
data2 recipes

httpie

CLI

Modern, user-friendly command-line HTTP client for the API era.

POST JSON data~95% est.
http POST api.example.com/data key=value nested:='{"a":1}'
networking3 recipes

jq

CLI

Lightweight and flexible command-line JSON processor.

Pretty-print JSON from an API response~99% est.
curl -s https://api.example.com/data | jq '.'
text-processing7 recipes · 6 verified

xh

CLI

Friendly and fast HTTP tool, reimplementation of HTTPie.

POST JSON data~97% est.
xh POST api.example.com/data key=value
networking3 recipes

yq

CLI

A lightweight YAML, JSON, and XML processor.

Convert JSON to YAMLVerified macOS · Linux
yq -p=json -o=yaml '.' data.json
text-processing5 recipes · 5 verified