1Finance::Quote::CurrencUiseesr(3C)ontributed Perl DocumeFnitnaatnicoen::Quote::Currencies(3)
2
3
4
6 Finance::Quote::Currencies - List of currencies from iban.com
7
9 use Finance::Quote::Currencies;
10
11 my $currencies = Finance::Quote::Currencies::known_currencies();
12
13 # Grab the latest list
14 my $live_currencies = Finance::Quote::Currencies::fetchive_currencies();
15
17 This module provides a list of known currencies from iban.com.
18
19 known_currencies returns a cached currency information stored in this
20 module.
21
22 fetch_live_currencies is a function that fetches the latest currency
23 information.
24
25 Both functions return a hash
26
27 {CODE => {'name' => 'Currency Name',
28 'country' => ['List of countries known to use this currency'],
29 'number' => 'ISO 4217 currency code'}}
30
32 The currency list stored in this module was last copied from the live
33 site Oct 2020.
34
36 This program is free software; you can redistribute it and/or modify it
37 under the terms of the GNU General Public License as published by the
38 Free Software Foundation; either version 2 of the License, or (at your
39 option) any later version.
40
41 Currency information fetched through this module is bound by terms and
42 conditons available at https://www.iban.com/terms.
43
45 Bradley Dean <bjdean@bjdean.id.au> - Original Yahoo version
46
47
48
49perl v5.36.1 2023-08-13 Finance::Quote::Currencies(3)