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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
Source: libfinance-quote-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: gregor herrmann <gregoa@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: libcgi-pm-perl <!nocheck>,
libdate-manip-perl <!nocheck>,
libdate-range-perl <!nocheck>,
libdate-simple-perl <!nocheck>,
libdatetime-format-iso8601-perl <!nocheck>,
libdatetime-format-strptime-perl <!nocheck>,
libdatetime-perl <!nocheck>,
libencode-perl <!nocheck>,
libhtml-parser-perl <!nocheck>,
libhtml-tableextract-perl <!nocheck>,
libhtml-tokeparser-simple-perl <!nocheck>,
libhtml-tree-perl <!nocheck>,
libhtml-treebuilder-xpath-perl <!nocheck>,
libhttp-cookies-perl <!nocheck>,
libhttp-message-perl <!nocheck>,
libio-compress-perl <!nocheck>,
libjson-parse-perl <!nocheck>,
libjson-perl <!nocheck>,
liblwp-protocol-https-perl <!nocheck>,
libreadonly-perl <!nocheck>,
libscalar-list-utils-perl <!nocheck>,
libspreadsheet-xlsx-perl <!nocheck>,
libstring-util-perl <!nocheck>,
libtest-pod-coverage-perl <!nocheck>,
libtest-simple-perl <!nocheck>,
libtext-template-perl <!nocheck>,
libtry-tiny-perl <!nocheck>,
liburi-perl <!nocheck>,
libweb-scraper-perl <!nocheck>,
libwww-perl (>= 6.48) <!nocheck>,
libxml-libxml-perl <!nocheck>,
perl
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libfinance-quote-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libfinance-quote-perl.git
Homepage: https://finance-quote.sourceforge.net/
Rules-Requires-Root: no
Package: libfinance-quote-perl
Architecture: all
Depends: ${misc:Depends},
${perl:Depends},
libcgi-pm-perl,
libdatetime-format-strptime-perl,
libdatetime-perl,
libencode-perl,
libhtml-parser-perl,
libhtml-tableextract-perl,
libhtml-tokeparser-simple-perl,
libhtml-tree-perl,
libhtml-treebuilder-xpath-perl,
libhttp-cookies-perl,
libhttp-message-perl,
libio-compress-perl,
libjson-parse-perl,
libjson-perl,
liblwp-protocol-https-perl,
libreadonly-perl,
libscalar-list-utils-perl,
libspreadsheet-xlsx-perl,
libstring-util-perl,
libtext-template-perl,
libtry-tiny-perl,
liburi-perl,
libweb-scraper-perl,
libwww-perl (>= 6.48),
libxml-libxml-perl
Description: Perl module for retrieving stock quotes from a variety of sources
Finance::Quote gets stock quotes from various internet sources all over the
world. Quotes are obtained by constructing a quoter object and using the
fetch method to gather data, which is returned as a two-dimensional hash (or
a reference to such a hash, if called in a scalar context). For example:
.
$q = Finance::Quote->new;
%info = $q->fetch("australia", "CML");
print "The price of CML is ".$info{"CML", "price"};
.
The first part of the hash (eg, "CML") is referred to as the stock.
The second part (in this case, "price") is referred to as the label.
|