Skip to content

Instantly share code, notes, and snippets.

@torybenya
torybenya / csv_splitter.py
Created August 18, 2016 01:03 — forked from jrivero/csv_splitter.py
A Python CSV splitter
import os
def split(filehandler, delimiter=',', row_limit=10000,
output_name_template='output_%s.csv', output_path='.', keep_headers=True):
"""
Splits a CSV file into multiple pieces.
A quick bastardization of the Python CSV library.
Arguments: