/acrylic

manipulate tabular data with a simple, functional style

Primary LanguagePythonMIT LicenseMIT

Acrylic

Acrylic makes manipulating tabular ("table-shaped") data easy with an elegant, readable syntax.

from acrylic import DataTable

data = DataTable.fromcsv("sales_data.csv")
data.wheregreater("price", 20).where("category", "electronics")