Source: libfinance-quote-perl Maintainer: Debian Perl Group Uploaders: gregor herrmann Section: perl Testsuite: autopkgtest-pkg-perl Priority: optional Build-Depends: debhelper-compat (= 13) Build-Depends-Indep: libcgi-pm-perl , libdate-manip-perl , libdate-range-perl , libdate-simple-perl , libdatetime-format-iso8601-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 , libscalar-list-utils-perl , libspreadsheet-xlsx-perl , libtest-pod-coverage-perl , libtest-simple-perl , libtext-template-perl , libtext-trim-perl , libtry-tiny-perl , liburi-perl , libweb-scraper-perl , libwww-perl , libxml-libxml-perl , perl Standards-Version: 4.5.1 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: http://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, libscalar-list-utils-perl, libspreadsheet-xlsx-perl, libtext-template-perl, libtext-trim-perl, libtry-tiny-perl, liburi-perl, libweb-scraper-perl, libwww-perl, 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.