{"library":"python-csv","title":"Python CSV Tools","description":"A lightweight library for manipulating CSV files, providing helpers for reading, writing, and transforming CSV data. Current version is 0.0.14, with slow release cadence. Suitable for small to medium CSV processing tasks.","language":"python","status":"active","last_verified":"Fri May 01","install":{"commands":["pip install python-csv"],"cli":null},"imports":["import csv"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import csv\n\n# Write a simple CSV file\ndata = [['Name', 'Age'], ['Alice', 30], ['Bob', 25]]\nwith open('output.csv', 'w', newline='') as f:\n    writer = csv.writer(f)\n    writer.writerows(data)\n\n# Read the CSV back\nwith open('output.csv', 'r') as f:\n    reader = csv.reader(f)\n    for row in reader:\n        print(row)","lang":"python","description":"Basic example using Python's built-in csv module (no separate library needed). The python-csv library itself is not typically used; Python's standard library suffices.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}