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

Changelog

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

  * Team upload.
  * Import upstream version 1.52.
  * d/copyright: add Manuel Friedli with new update.
  * Declare compliance with Debian Policy 4.6.1.
  * Refresh text-trim.patch.

 -- Étienne Mollier <email address hidden>  Sun, 10 Jul 2022 09:46:31 +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

Kinetic: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfinance-quote-perl_1.52-1.dsc 3.2 KiB 072509b3a3c45763a8e4f461d1a308f546537e16cf0f68e6f43990e6eb6eaf40
libfinance-quote-perl_1.52.orig.tar.gz 236.4 KiB aa75edc10db0c1f388cb1ce93f680a75e3e4d8583cbdddc95c35521ab81f0610
libfinance-quote-perl_1.52-1.debian.tar.xz 6.6 KiB 570db63d56540fd165f611af62b5ee8a4c955e7ba6e6ba8e546ddfa0946cc3e9

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.