blob: 252b3bc55a5c79d3ff61ab8249cb39ebf78e5412 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
Source: fast-cpp-csv-parser
Section: libdevel
Priority: optional
Maintainer: Jörg Frings-Fürst <debian@jff.email>
Build-Depends: debhelper (>= 11)
Standards-Version: 3.9.8
Homepage: https://github.com/ben-strasser/fast-cpp-csv-parser
Vcs-Git: git://jff.email/opt/git/fast-cpp-csv-parser.git
Vcs-Browser: https://jff.email/cgit/fast-cpp-csv-parser.git/
Package: libfccp-dev
Architecture: all
Depends: ${misc:Depends}
Description: Fast C++ CSV Parser
fast-cpp-cvs-parser is a small, easy-to-use and fast header-only
library for reading comma separated value (CSV) files. The library
is completely contained inside a single header file. The library
can used with a standard conformant C++11 compiler.
.
Feature list:
* Automatically rearranges columns by parsing the header line.
* Disk I/O and CSV-parsing are overlapped using threads for efficiency.
* Parsing features such as escaped strings can be enabled and disabled
at compile time using templates.
* Can read multiple GB files in reasonable time.
* Support for custom columns separators (i.e. Tab separated value files
are supported), quote escaped strings, automatic space trimming.
* Works with *nix and Windows newlines and automatically ignores UTF-8 BOMs.
* Exception classes with enough context to format useful error messages.
* what() returns error messages ready to be shown to a user.
|