Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

sd416/csv-splitter

Open more actions menu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

CSV File Splitter

A Python script to split large CSV files into smaller files with a specified number of rows. This tool is useful for managing large datasets and breaking them into more manageable pieces.

Features

  • Handles filenames with or without .csv extension: Automatically appends .csv if missing.
  • Customizable row limit: Specify the number of rows per split file.
  • Header inclusion: Ensures headers are included in all split files.
  • Dynamic output naming: Output files are named with the original row number range they contain, making it easy to track the data.

Usage

  1. Clone the repository:

    git clone https://github.com/sd416/csv-splitter.git
    cd csv-splitter
  2. Run the script:

    python split_csv.py -f my_data.csv -n 100 -d /path/to/output
  3. arguments:

  • -f FILENAME, --filename FILENAME

    • Name of the input CSV file. The .csv extension is optional.
  • -n NUM_ROWS, --num_rows NUM_ROWS

    • Number of rows to include in each split file.
  • -d DESTINATION, --destination DESTINATION

    • Directory path where the split files will be saved. Defaults to the current directory.

Example

    python split_csv.py -f my_data.csv -n 100 -d /path/to/output

The output files will be named:

my_data_1-100.csv
my_data_201-300.csv
.
.
.
.
my_data_501-1000.csv

...

About

CSV File Splitter

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

Morty Proxy This is a proxified and sanitized view of the page, visit original site.