https://github.com/kautenja/csv
a C++ implementation of a CSV reader / writer
https://github.com/kautenja/csv
Last synced: 6 months ago
JSON representation
a C++ implementation of a CSV reader / writer
- Host: GitHub
- URL: https://github.com/kautenja/csv
- Owner: Kautenja
- License: mit
- Created: 2019-12-07T06:55:12.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-07T06:57:04.000Z (almost 6 years ago)
- Last Synced: 2025-02-14T10:18:25.981Z (8 months ago)
- Language: C++
- Size: 680 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CSV
[![build-status][]][build-server]
[build-status]: https://travis-ci.com/Kautenja/csv.svg
[build-server]: https://travis-ci.com/Kautenja/csv# Roadmap
- [x] load
- [x] print
- [ ] load with types
- [ ] check column names
- [ ] error handling# Usage
Simply add [include/csv.hpp](include/csv.hpp) to your C++ project either by
copying directly or using git submodules.## Testing
To compile and run the [test suite](test):
```shell
scons test
```## Benchmarking
To run benchmarks:
```shell
scons benchmark/benchmark_csv.cpp
```