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

Changelog

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

  * Import upstream version 1.58.
    Closes: #1037051
  * Update list of upstream copyright holders.
  * Update (versioned) test and runtime dependencies.
  * Drop all patches.
    (Taken from upstream and/or merged/fixed.)

 -- gregor herrmann <email address hidden>  Fri, 10 Nov 2023 01:30:55 +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

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfinance-quote-perl_1.58-1.dsc 3.4 KiB c4f93c136d50eebd1b3c09a0bc04fd076bbc176e23038547e733c1d640c42d35
libfinance-quote-perl_1.58.orig.tar.gz 256.1 KiB 8cddea0d3809a36695cee69a2862beaacd615357febafdb72641a77ab4676b80
libfinance-quote-perl_1.58-1.debian.tar.xz 6.6 KiB a89e6838acc2eda4f4b747dd8ac034dfc159c9f231505185d681ad37f55223d5

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.