libfinance-quote-perl 1.53-2 source package in Ubuntu

Changelog

libfinance-quote-perl (1.53-2) unstable; urgency=medium

  [ Debian Janitor ]
  * Use secure URI in Homepage field.

 -- Jelmer Vernooij <email address hidden>  Wed, 30 Nov 2022 16:07:48 +0000

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

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfinance-quote-perl_1.53-2.dsc 3.1 KiB a747169c5297d6595a8623fd4cc288a95d6e3a57e63d033816d5ea482e7f58e9
libfinance-quote-perl_1.53.orig.tar.gz 238.8 KiB e6c8e4fead70f4f68e09970d22e19d8cb867db973a099e7493c6a3786d49b11d
libfinance-quote-perl_1.53-2.debian.tar.xz 6.6 KiB 52816fab905fc5625322cb089cd8511832bf48fa224ad3d8e92710c76ae26430

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.