No project description provided
Project description
quak /kwæk/
an anywidget for data that talks like a duck
quak is a scalable data profiler for quickly scanning large tables, capturing interactions as executable SQL queries.
- interactive 🖱️ mouse over column summaries, cross-filter, sort, and slice rows.
- fast ⚡ built with Mosaic; views are expressed as SQL queries lazily executed by DuckDB.
- flexible 🔄 supports many data types and formats via Apache Arrow and the dataframe interchange protocol.
- reproducible 📓 a UI for building complex SQL queries; materialize views in the kernel for further analysis.
install
[!WARNING] quak is a prototype exploring a high-performance data profiler based on anywidget. It is not production-ready. Expect bugs. Open-sourced for SciPy 2024.
pip install quak
usage
The easiest way to get started with quak is using the IPython cell magic.
%load_ext quak
import polars as pl
df = pl.read_parquet("https://github.com/uwdata/mosaic/raw/main/data/athletes.parquet")
df
quak hooks into Jupyter's display mechanism to automatically render any
dataframe-like object (implementing the Python dataframe interchange
protocol)
using quak.Widget
instead of the default display.
Alternatively, you can use quak.Widget
directly:
import polars as pl
import quak
df = pl.read_parquet("https://github.com/uwdata/mosaic/raw/main/data/athletes.parquet")
widget = quak.Widget(df)
widget
interacting with the data
quak captures all user interactions as queries.
At any point, table state can be accessed as SQL,
widget.sql # SELECT * FROM df WHERE ...
which for convenience can be executed in the kernel to materialize the view for further analysis:
widget.data() # returns duckdb.DuckDBPyRelation object
By representing UI state as SQL, quak makes it easy to generate complex queries via interactions that would be challenging to write manually, while keeping them reproducible.
using quak in marimo
quak can also be used in marimo notebooks, which provide out-of-the-box support for anywidget:
import marimo as mo
import polars as pl
import quak
df = pl.read_parquet("https://github.com/uwdata/mosaic/raw/main/data/athletes.parquet")
widget = mo.ui.anywidget(quak.Widget(df))
widget
contributing
Contributors welcome! Check the Contributors Guide to get started. Note: I'm wrapping up my PhD, so I might be slow to respond. Please open an issue before contributing a new feature.
references
quak pieces together many important ideas from the web and Python data science ecosystems. It serves as an example of what you can achieve by embracing these platforms for their strengths.
- Observable's data table: Inspiration for the UI design and user interactions.
- Mosaic: The foundation for linking databases and interactive table views.
- Apache Arrow: Support for various data types and efficient data interchange between JS/Python.
- DuckDB: An amazingly engineered piece of software that makes SQL go vroom.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file quak-0.1.8.tar.gz
.
File metadata
- Download URL: quak-0.1.8.tar.gz
- Upload date:
- Size: 66.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b285c1405f123f0f68f804b408c3fc8d2335878442f5ec93c43f2f92a2c3ee5 |
|
MD5 | 710c221ab32726679016522ae3e2c9b3 |
|
BLAKE2b-256 | 485f7ca86b17606b449b940a5c1f30c89d071abf30e4e626b9bd3176376c1d28 |
File details
Details for the file quak-0.1.8-py2.py3-none-any.whl
.
File metadata
- Download URL: quak-0.1.8-py2.py3-none-any.whl
- Upload date:
- Size: 67.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2063c551797a7ff2d07a41f20b5ca60ec7447f6acd4ed28a8751782669bac7f7 |
|
MD5 | 3641ca3cc33fab20bb43127faf902155 |
|
BLAKE2b-256 | 3807e8da78770b2b30d40bd95b09cc2358123c1ca46f0f05684134d00badd023 |