data-python
Installation
SKILL.md
Data Python Skill
Version: 1.0 Stack: Python (pandas, polars, pyspark)
Python makes it easy to write data processing code that works on sample data and fails on real data. iterrows() takes 30 seconds on 10K rows and 30 minutes on 10M. A DataFrame without explicit dtypes uses 8x the memory it needs. Chained indexing creates silent copies that lose your changes. These aren't edge cases — they're the default behavior of pandas when you write it like regular Python.
Vectorized operations, explicit schemas, and proper dtypes mean your code scales from prototype to production without rewriting.