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

Changelog

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

  * Import upstream version 1.59.
  * Update years of packaging copyright.

 -- gregor herrmann <email address hidden>  Mon, 01 Jan 2024 22:58:49 +0100

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
Noble release universe perl

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfinance-quote-perl_1.59-1.dsc 3.4 KiB 794d12d9d2ba4efbe6ef2bad607236e2a2e7f013ad3acb8f3bba1f35f3046d23
libfinance-quote-perl_1.59.orig.tar.gz 258.5 KiB 9ae92879acc682ff4016e1eca9249c8e4a38cb7f301e72a2a36d5f2157f12928
libfinance-quote-perl_1.59-1.debian.tar.xz 6.6 KiB 8a6742a509964e6889fafdb2c48796c72992e576b4e71669271f8963820df5ae

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.