libfinance-quote-perl 1.50~rc2-2 source package in Ubuntu

Changelog

libfinance-quote-perl (1.50~rc2-2) unstable; urgency=medium

  * Add patch from upstream GitHub pull request to fix a problem with
    the Morningstar UK screen scraper.
  * Upload to unstable to get this version into bullseye.
    While the changes are not exactly minimal, this version is apparently much
    better than what we have in testing right now.

 -- gregor herrmann <email address hidden>  Sun, 28 Mar 2021 01:26:17 +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

Builds

Impish: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfinance-quote-perl_1.50~rc2-2.dsc 3.3 KiB f3ec100109f583eb635e243078bd32be86dd8f2652abdf3c2f989547f86d953f
libfinance-quote-perl_1.50~rc2.orig.tar.gz 228.0 KiB a3f5349b6c6819404146c44e3a4beeb8f4f10f3c7a939a06bb47680ca83af8ce
libfinance-quote-perl_1.50~rc2-2.debian.tar.xz 7.0 KiB f3933ae1b188bd2bd2f1c06b0039c312b9f854bc063ea443a6e4d341e34536e7

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.