Skip to content

A header-only static library to handle csv files and manipulate data in C++

Notifications You must be signed in to change notification settings

hrishibawane/csvlib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

csvlib

A C++ static library to handle csv files and the data. It provides the basic features of pandas Python library. Currently supported on Linux.

Integration

Refer to below steps to use this library:

  1. git clone https://github.com/hrishibawane/csvlib.git
  2. cd csvlib
  3. make build

Usage

csv.hpp is the single required header file in src or released here

#include <csvlib/src/csv.hpp>

// for convenience
using namespace hcsv;

Compilation

  1. g++ <file_name>.cpp -c
  2. g++ <file_name>.o -lcsv (Optional -o <executable_name>).
  3. Run the generated executable.