• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

err-csv/H21-Dec-2021-6855

examples/H21-Dec-2021-1,3651,143

files/H21-Dec-2021-3325

t/H03-May-2022-5,6134,646

CONTRIBUTING.mdH A D10-Feb-20211 KiB3121

CSV_XS.pmH A D19-Oct-2021140.8 KiB4,9511,249

CSV_XS.xsH A D14-Apr-202162.2 KiB2,4471,977

ChangeLogH A D21-Dec-202134.6 KiB902766

MANIFESTH A D21-Dec-20212.4 KiB5756

META.jsonH A D21-Dec-20211.6 KiB6867

META.ymlH A D21-Dec-2021845 3534

Makefile.PLH A D10-Feb-20215.1 KiB175158

READMEH A D19-Oct-20212.7 KiB7656

cpanfileH A D21-Dec-2021307 1813

ppport.hH A D03-Aug-2021531.4 KiB17,9185,261

README

1Module:
2    Text::CSV_XS
3
4Description:
5    Text::CSV_XS provides facilities for the composition and decomposition
6    of comma-separated values.   An instance of the Text::CSV_XS class can
7    combine fields into a CSV string and parse a CSV string into fields.
8
9    Program to process a CSV file:
10    ------------------------------
11    This distribution provides several examples of scripts that convert CSV
12    files or data streams into XLS or XLSX  or simply check if the CSV data
13    is valid. It is easy to amend those scripts to do whatever the end-user
14    actually requires.  The full documentation also provaides various small
15    snippets of example code.
16
17    Convert a CSV file into JSON:
18    -----------------------------
19    That process is described in the documentation.
20
21Copying:
22    Copyright (c) 2007-2021 H.Merijn Brand.  All rights reserved.
23    Copyright (c) 1998-2001 Jochen Wiedmann. All rights reserved.
24    Portions Copyright (c) 1997 Alan Citterman. All rights reserved.
25
26    This program is free software; you can redistribute it and/or modify
27    it under the same terms as Perl itself.
28
29    Recent changes can be (re)viewed in the public GIT repository at
30    https://github.com/Tux/Text-CSV_XS
31    Feel free to clone your own copy:
32
33     $ git clone https://github.com/Tux/Text-CSV_XS Text-CSV_XS
34
35    or get it as a tgz:
36
37     $ wget --output-document=Text-CSV_XS-git.tgz \
38	   https://github.com/Tux/Text-CSV_XS/archive/master.tar.gz
39
40Prerequisites:
41    perl 5.6.1 or up.
42
43    You can have a working Test::More for 5.6.1 by requiring version
44    Test::Harness-2.64 and Test::Simple-0.90
45
46    I found no easy way to get Test::More working on 5.6.0
47
48    examples/csv-check requires perl with defined-or and PerlIO, and
49    making that work on other versions is left as an exercise to the
50    reader. Other examples are checked against 5.8.4. For Unicode to
51    work more or less reliable, you'd need perl 5.8.2 or newer.
52
53    examples/csv2xlsx requires 5.14 or newer.
54
55Build/Installation:
56    Standard build/installation:
57	perl Makefile.PL
58	make test
59	make install
60
61Author:
62    H.Merijn Brand <h.m.brand@xs4all.nl> (   0.25 - 2007-05-07 ..)
63    Jochen Wiedmann <joe@ispsoft.de>     (.. 0.23 - 2001-10-10   )
64
65    Interface design by Alan Citterman <alan@mfgrtl.com>
66
67    A pure-perl version Text::CSV_PP is being maintained by  Kenichi
68    Ishigaki. This module was created by Makamaka Hannyaharamitu who
69    maintained it up to 2015.   It tries to follow  Text::CSV_XS  as
70    closely as possible.
71    Do not file bugs on Text::CSV to Text::CSV_XS.
72
73    Text::CSV_PP is bundled with Text::CSV which is a wrapper module
74    over Text::CSV_XS and Text::CSV_PP that selects  Text::CSV_XS if
75    if available, and otherwise uses Text::CSV_PP.
76