From f6f9f6fdfa3743befeb783c09bdb7d00086231ad Mon Sep 17 00:00:00 2001 From: myd7349 Date: Thu, 30 May 2019 18:17:51 +0800 Subject: [PATCH] CSV: Add csv, fast-cpp-csv-parser Fix #751 Fix #800 --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 4039e7b..a90afd0 100644 --- a/README.md +++ b/README.md @@ -291,7 +291,10 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny * [Themis](https://github.com/cossacklabs/themis) - crypto library for painless data security, providing symmetric and asymmetric encryption, secure sockets with forward secrecy, for mobile and server platforms. [Apache2] ## CSV +*Libraries for parsing Comma Separated Value (CSV) files* +* [csv](https://github.com/p-ranav/csv) - CSV for modern C++. [MIT] +* [Fast C++ CSV Parser](https://github.com/ben-strasser/fast-cpp-csv-parser) - Small, easy-to-use and fast header-only library for reading CSV files. [BSD-3-Clause] * [Vince's CSV Parser](https://github.com/vincentlaucsb/csv-parser) - A fast, self-contained, streaming C++17 CSV parser with optional type-casting and statistics. [MIT] ## Database