Agent skill · Databases

polars

High-performance DataFrame library for Python ETL, analytics, and pandas migration. Use for expression-based data manipulation with lazy query optimization, parallel execution, streaming out-of-core processing, Arrow interoperability, and optional GPU execution.

K-Dense-AIgithub.com/K-Dense-AIGitHub ↗
claude-coderead-onlyMIT
Install
npx skills add K-Dense-AI/scientific-agent-skills --skill polars --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 7
SKILL.md size: 10 KB
Bundled scripts: none
Version: 1.1
Allowed tools: Read
Requires: Requires Python 3.10+ for polars 1.41.x. Install with uv pip install; optional extras enable Excel, database, cloud…
Path: skills/polars/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 32,619
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Polars ## Overview Polars is a lightning-fast DataFrame library for Python and Rust built on Apache Arrow. Work with Polars' expression-based API, lazy evaluation framework, and high-performance data manipulation capabilities for efficient data processing, pandas migration, and data pipeline optimization. ## Quick Start ### Installation and Basic Usage Install the current stable Polars release verified during this refresh: ```bash uv pip install "polars==1.41.2" ``` Install optional integrations only when needed: ```bash uv pip install "polars[excel,database,fsspec,pandas,numpy]==1.41.2" ``` Basic DataFrame creation and operations: ```python import polars as pl # Create DataFrame df = pl.DataFrame({ "name": ["Alice", "Bob", "Charlie"], "age": [25, 30, 35], "city": ["NY", "LA", "SF"] }) # Select columns df.select("name", "age") # Filter rows df.filter(pl.col("age") > 25) # Add computed columns df.with_columns( age_plus_10=pl.col("age") + 10 ) ``` ## Core Concepts ### Expressions Expressions are the fundamental building blocks of Polars operations. They describe transformations on data and can be composed, reused, and optimized. **Key principles:** - Use `pl.col("column_name")` to

What's inside
Steps it walks through
  1. Overview
  2. Quick Start
  3. Installation and Basic Usage
  4. Core Concepts
  5. Expressions
  6. Lazy vs Eager Evaluation
  7. Common Operations
  8. Select
  9. Filter
  10. With Columns
  11. Group By and Aggregations
  12. Aggregations and Window Functions
  13. Aggregation Functions
  14. Window Functions with over()
Ships with 6 files
  • references/best_practices.md
  • references/core_concepts.md
  • references/io_guide.md
  • references/operations.md
  • references/pandas_migration.md
  • references/transformations.md
Commands it runs
uv pip install "polars==1.41.2"
uv pip install "polars[excel,database,fsspec,pandas,numpy]==1.41.2"
More from scientific-agent-skills
All skills →
About this skill
What does the polars skill do?

High-performance DataFrame library for Python ETL, analytics, and pandas migration. Use for expression-based data manipulation with lazy query optimization, parallel execution, streaming out-of-core processing, Arrow interoperability, and optional GPU execution.

How do I install it?

Run `npx skills add K-Dense-AI/scientific-agent-skills --skill polars --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From K-Dense-AI/scientific-agent-skills, a repository with 32,619 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going