logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Finance::Quote::Currencies - List of currencies from iban.com

Authors

         Bradley Dean <bjdean@bjdean.id.au> - Original Yahoo version

perl v5.40.1                                       2025-05-16                    Finance::Quote::Currencies(3pm)

Cache Date

       The currency list stored in this module was last copied from the live site Oct 2020.

Description

       This module provides a list of known currencies from iban.com.

       known_currencies returns a cached currency information stored in this module.

       fetch_live_currencies is a function that fetches the latest currency information.

       Both functions return a hash

           {CODE => {'name'    => 'Currency Name',
                     'country' => ['List of countries known to use this currency'],
                     'number'  => 'ISO 4217 currency code'}}

License

       This program is free software; you can redistribute it and/or modify it under the terms of the GNU
       General Public License as published by the Free Software Foundation; either version 2 of the License, or
       (at your option) any later version.

       Currency information fetched through this module is bound by terms and conditons available at
       https://www.iban.com/terms.

Name

       Finance::Quote::Currencies - List of currencies from iban.com

Synopsis

           use Finance::Quote::Currencies;

           my $currencies = Finance::Quote::Currencies::known_currencies();

           # Grab the latest list
           my $live_currencies = Finance::Quote::Currencies::fetchive_currencies();

See Also