Hi, was using split_csv_file and was hoping to specify the max_lines and buffering.
I ended up using split_file directly with the options for the split_csv_file as follows:
split_file(filename, out_dir, max_lines=5000, buffering=10000, line_reader=csv_reader, split_file_writer=split_file_output_csv)
was hoping to be able to do the following
split_csv_file(filename, out_dir, max_lines=5000, buffering=10000)