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 32 33
|
Source: libfinance-qif-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Andreas Tille <tille@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: perl
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libfinance-qif-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libfinance-qif-perl.git
Homepage: https://metacpan.org/release/Finance-QIF
Package: libfinance-qif-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends}
Multi-Arch: foreign
Description: Parse and create Quicken Interchange Format files
Finance::QIF is a module for working with QIF (Quicken Interchange Format)
files in Perl. Finance::QIF reads QIF data records from a file passing each
successive record to the caller for processing. This module also has the
capability of writing QIF records to a file.
.
The QIF file format typically consists of a header containing a record or
transaction type, followed by associated data records. Within a file there
may be multiple headers. Headers are usually followed by data records,
however data is not required to always follow a header.
.
A hash reference is returned for each record read from a file. The hash will
have a "header" value which contains the header type that was read along with
all supported values found for that record. If a value is not specified in
the data file, the value will not exist in this hash.
|