libfinance-quote-perl 1.61-1 source package in Ubuntu

Changelog

libfinance-quote-perl (1.61-1) unstable; urgency=medium

  * Import upstream version 1.61.
    Fixes for SIX.pm and YahooJSON.pm.

 -- gregor herrmann <email address hidden>  Sun, 21 Apr 2024 17:40:25 +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 Pocket Published Component Section

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfinance-quote-perl_1.61-1.dsc 3.4 KiB 8ec2b188a3623108b8c8105478f0a397724850e9180f5f9b86eda804d3cdda8f
libfinance-quote-perl_1.61.orig.tar.gz 261.7 KiB 430ee9df22dcaa32eb630a4d7fb57a28542f9fe507b266b0a37f6754b4f35a08
libfinance-quote-perl_1.61-1.debian.tar.xz 6.9 KiB 4567f13aeb014fee88846ba05e6fad7e57cbdd4b95ca16a3363bdeeea7c3682e

Available diffs

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.