anyquery

Query anything with SQL - files, APIs, databases, and more

brewmacoslinux
Try with needOr install directly
Source

About

Query anything with SQL

Commands

anyquery

Examples

Query a CSV file with SQL$ anyquery 'SELECT * FROM data.csv WHERE age > 30'
Query a JSON API endpoint$ anyquery 'SELECT id, name FROM https://api.example.com/users'
Query multiple data sources with a JOIN$ anyquery 'SELECT u.name, o.total FROM users.json u JOIN orders.csv o ON u.id = o.user_id'