Skip to main content

Concatenate comma separated value files

Project description

csvcat reads one or more comma separated value text file (a CSV file) and outputs some or all of the data in the same format. It includes options for limiting and reordering the columns in the output, as well as skipping repeated headers.

Installation

The simplest way to install is using pip:

$ pip install csvcat

If you have already downloaded the source and unpacked it, you can also install by running:

$ sudo python setup.py install

Usage

Run csvcat --help for a complete description of all options, including examples of how to use the program in various modes.

Examples

The inputs to csvcat are any number of CSV files, and the output is CSV data printed to standard output. The examples listed below assume two simple CSV files.

$ cat testdata1.csv
"Title 1","Title 2","Title 3"
1,"a",08/18/07
2,"b",08/19/07
3,"c",08/20/07

$ cat testdata2.csv
Title 1,Title 2,Title 3
40,D,08/21/07
50,E,08/22/07
60,F,08/23/07

When given no options, csvcat simply prints the contents of an input file to standard output.

$ csvcat testdata1.csv
Title 1,Title 2,Title 3
1,a,08/18/07
2,b,08/19/07
 3,c,08/20/07

To select which columns should be included in the output, use the --columns option. Columns are identified by their number, beginning with 0. Column numbers can be listed in any order, so it is possible to reorder the columns of the input data, if needed.

$ csvcat --columns 2,0 testdata1.csv
Title 3,Title 1
08/18/07,1
08/19/07,2
08/20/07,3

Different output formats can be selected by using the --dialect option. There are only two dialects available by default, but the csv module API supports registering additional dialects.

$ csvcat --dialect excel-tab testdata1.csv
Title 1 Title 2 Title 3
1       a       08/18/07
2       b       08/19/07
3       c       08/20/07

To merge multiple files, only including a single set of headers, use the --skip-headers option:

$ csvcat --skip-headers --columns 2,0 testdata1.csv testdata2.csv
Title 3,Title 1
08/18/07,1
08/19/07,2
08/20/07,3
08/21/07,40
08/22/07,50
08/23/07,60

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

csvcat-2.0.2.tar.gz (9.6 kB view details)

Uploaded Source

Built Distribution

csvcat-2.0.2-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file csvcat-2.0.2.tar.gz.

File metadata

  • Download URL: csvcat-2.0.2.tar.gz
  • Upload date:
  • Size: 9.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for csvcat-2.0.2.tar.gz
Algorithm Hash digest
SHA256 e61a70e470d5480ca55cda0da46354b3b45d5a72f4e82c6c075312d0a8d2785b
MD5 6562bf26e91effc43d4d2be4156d02b9
BLAKE2b-256 151142c268fcc69999e6b4824dddbb6c27a2cd5ae098a56a88605ce6e4126aba

See more details on using hashes here.

File details

Details for the file csvcat-2.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for csvcat-2.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b6d9ba1adb8410dbcd4fbc9b2d608e58d33e97d3dc59cf9eab8d45ad6c5d6bef
MD5 78247fb7f4eeb4d565c8af8e969862b0
BLAKE2b-256 5d25f01d33c9f3be4c9d3e5c9ed03fb97cc3a5c74ca390b77ac983982135f854

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page