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

Changelog

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

  * Import upstream version 1.53.
  * Make (test) dependency on libwww-perl versioned.
  * Update upstream copyright holders.
  * Update years of packaging copyright.
  * Refresh text-trim.patch.

 -- gregor herrmann <email address hidden>  Tue, 11 Oct 2022 18:36:09 +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

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
libfinance-quote-perl_1.53-1.dsc 3.3 KiB cbad5257ee68893b96b9c33243561bcbddcbddd91a480ae68d5b09291506aef6
libfinance-quote-perl_1.53.orig.tar.gz 238.8 KiB e6c8e4fead70f4f68e09970d22e19d8cb867db973a099e7493c6a3786d49b11d
libfinance-quote-perl_1.53-1.debian.tar.xz 6.6 KiB 6f50088d714704c775628c14a2bb0abec671e6528df7eafa7d705e4a8d3cd8fb

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.