csv
Installation
SKILL.md
CSV Processing Skill
Work with CSV data efficiently.
1. Parse CSV
Python:
import csv
import pandas as pd
# Using csv module
with open('data.csv', 'r') as f:
reader = csv.DictReader(f)
for row in reader:
print(row['name'], row['email'])