Skip to main content

An SQL interface for your everyday data

Project description

Querify

Build Status

Querify is a CLI tool that provides SQL interface for data sources. It is useful for data manipulation using a standard interface for various data sources, and provides an SQL features that allows to query the data in a more convenient way, like WHERE, GROUP BY, ORDER BY and LIMIT.

Installation

Use the package manager pip to install foobar.

pip install sql-querify

Usage

qy <query>

Examples

List all tables

qy "SHOW tables"
table_name
dirs
files
processes

Describe a table

qy "DESC processes"
field_name data_type
pid int
name str
cmdline str
status str
username str
cpu_pct float
memory_pct float
create_time datetime

Count processes by username

qy "SELECT username, COUNT(1) AS count FROM processes GROUP BY username ORDER BY count DESC"
username count
user1 443
root 215

Top 5 directories by size

qy "SELECT name, size_in_bytes/1024/1024 AS size_mb FROM dirs ORDER BY size_mb DESC LIMIT 5"
name size_mb
pydantic_core 4
chardet 1
distlib 1
_vendor/rich/pycache 1
pip/_vendor/chardet 1

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sql_querify-0.1.2.tar.gz (17.8 kB view hashes)

Uploaded Source

Built Distribution

sql_querify-0.1.2-py3-none-any.whl (20.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page