libfinance-quote-perl 1.51-1 source package in Ubuntu
Changelog
libfinance-quote-perl (1.51-1) unstable; urgency=medium * New upstream version 1.51. * Drop online.patch, fixed upstream. * Drop MorningstarUK.patch, which was taken from upstream. * Unfuzz text-trim.patch. * Remove removed files from debian/libfinance-quote-perl.docs. * Declare compliance with Debian Policy 4.6.0. -- gregor herrmann <email address hidden> Wed, 01 Sep 2021 21:50:58 +0200
Upload details
- Uploaded by:
- Debian Perl Group
- Uploaded to:
- Sid
- Original maintainer:
- Debian Perl Group
- Architectures:
- all
- Section:
- perl
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Jammy | release | universe | perl |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
libfinance-quote-perl_1.51-1.dsc | 3.3 KiB | 24bed576a8eac85ca0b624b73742849ee67d4bcc8ef7b23436ed3ead0c69af15 |
libfinance-quote-perl_1.51.orig.tar.gz | 225.7 KiB | f441edd47772adfd1880af74fc87228bd704e273954c0fadc7006844254a8956 |
libfinance-quote-perl_1.51-1.debian.tar.xz | 6.5 KiB | cda8b6fbc42669153f5a55cf966d554c52f78c0988033b44d202eb42424766c2 |
Available diffs
- diff from 1.50~rc2-2 to 1.51-1 (14.9 KiB)
No changes file available.
Binary packages built by this source
- libfinance-quote-perl: 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.