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

Changelog

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

  * Import upstream version 1.62.
    Added: CurrencyFreaks.pm, StockData.pm, BorsaItaliana.pm;
    re-added: Fool.pm.
  * Update upstream copyright holders.
  * CONTRIBUTING.pod is gone.

 -- gregor herrmann <email address hidden>  Sun, 19 May 2024 13:52: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
Oracular release universe perl

Builds

Oracular: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfinance-quote-perl_1.62-1.dsc 3.4 KiB ff1ecc1610c853e60fd929e06034358c1d4a2bd70a6835798d5589f8598c03cd
libfinance-quote-perl_1.62.orig.tar.gz 261.3 KiB 0d3133b0bf3d779582c566850d577f2bbe8e1acbd11497831cd43d8f31606482
libfinance-quote-perl_1.62-1.debian.tar.xz 6.8 KiB c1c4f743e55ef9166c7b1e1255665292bc9bb309b1c86c3f7f84b81eb839226b

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.