How to Install and Uninstall perl-Finance-Quote Package on openSUSE Leap

Last updated: May 18,2024

1. Install "perl-Finance-Quote" package

Please follow the step by step instructions below to install perl-Finance-Quote on openSUSE Leap

$ sudo zypper refresh $ sudo zypper install perl-Finance-Quote

2. Uninstall "perl-Finance-Quote" package

Learn how to uninstall perl-Finance-Quote on openSUSE Leap:

$ sudo zypper remove perl-Finance-Quote

3. Information about the perl-Finance-Quote package on openSUSE Leap

Information for package perl-Finance-Quote:
-------------------------------------------
Repository : Main Repository
Name : perl-Finance-Quote
Version : 1.51-bp155.1.4
Arch : noarch
Vendor : openSUSE
Installed Size : 478.2 KiB
Installed : No
Status : not installed
Source package : perl-Finance-Quote-1.51-bp155.1.4.src
Upstream URL : https://metacpan.org/release/Finance-Quote
Summary : Get stock and mutual fund quotes from various exchanges
Description :
This module 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.