🌐
GitHub
gist.github.com › 1141751
Tuple of currencies for Python · GitHub
August 11, 2011 - Tuple of currencies for Python. GitHub Gist: instantly share code, notes, and snippets.
🌐
GitHub
github.com › duketemon › currency_codes
GitHub - duketemon/currency_codes: Comprehensive Python package for managing currency codes across different types of assets
from currency_codes import get_all_currencies, Currency currencies: list[Currency] = get_all_currencies()
Author   duketemon
🌐
GitHub
github.com › Alir3z4 › python-currencies
GitHub - Alir3z4/python-currencies: Display money format and its filthy currencies, for all money lovers out there.
>>> from currencies import Currency >>> >>> currency = Currency('USD') >>> currency.get_money_format(13) >>> '$13' >>> currency.get_money_format(13.99) >>> '$13.99' >>> currency.get_money_format('13,2313,33') >>> '$13,2313,33' >>> >>> # Displaying with currency as well >>> >>> currency.get_money_with_currency_format(13) >>> '$13 USD' >>> currency.get_money_with_currency_format(13.99) >>> '$13.99 USD' >>> currency.get_money_with_currency_format('13,2313,33') >>> '$13,2313,33 USD'
Starred by 74 users
Forked by 13 users
Languages   Python 100.0% | Python 100.0%
🌐
GitHub
github.com › topics › currencies
currencies · GitHub Topics · GitHub
go money ioc json iso currency iso3166 iso4217 iso-3166-1 currencies fips fifa iso3166-1 iso-639-1 iso-4217 iso3166-2 iso-3166-2 cctld iso-3166 call-codes ... Python price handling for humans.
🌐
GitHub
github.com › MicroPyramid › forex-python
GitHub - MicroPyramid/forex-python: Foreign exchange rates, Bitcoin price index and currency conversion using ratesapi.io
from forex_python.converter import CurrencyRates c = CurrencyRates() List all latest currency rates for "USD": c.get_rates('USD') # Example output: {'INR': 83.12, 'EUR': 0.92, ...} Get conversion rate from USD to INR: c.get_rate('USD', 'INR') # Example output: 83.12 · Convert amount from USD to INR: c.convert('USD', 'INR', 10) # Example output: 831.2 · Force use of Decimal: from decimal import Decimal c = CurrencyRates(force_decimal=True) c.convert('USD', 'INR', Decimal('10.45')) # Example output: 868.75 ·
Starred by 702 users
Forked by 197 users
Languages   Python 100.0% | Python 100.0%
🌐
PyPI
pypi.org › project › currencies
currencies · PyPI
http://pypi.python.org/pypi/currencies · So easily install it by pip · $ pip install currencies · Or by easy_install · $ easy_install currencies · Another way is by cloning currencies’s git repo · $ git clone git://github.com/Alir3z4/python-currencies.git ·
      » pip install currencies
    
Published   Dec 12, 2020
Version   2020.12.12
🌐
GitHub
github.com › mohammedhammoud › python-currency-list
GitHub - mohammedhammoud/python-currency-list
django_currency_choice_list.py · enums.py · python_currency_dict.py · View code · Dictionary of all currencies in Python and Django · No description, website, or topics provided. Readme · 2 stars · 1 watching · 3 forks · Report repository · No releases published ·
Starred by 2 users
Forked by 3 users
Languages   Python 100.0% | Python 100.0%
🌐
GitHub
github.com › tammoippen › iso4217parse
GitHub - tammoippen/iso4217parse: Parse currencies (symbols and codes) from and to ISO4217. · GitHub
In [1]: import iso4217parse In [2]: iso4217parse.country('HK') Out[2]: [ Currency(alpha3='HKD', code_num=344, name='Hong Kong dollar', symbols=['HK$', 'HK$', '$', '$', 'dollar', 'dollars', 'Dollar', 'Dollars', 'HK﹩', '﹩', '元'], minor=2, countries=['HK']), Currency(alpha3='CNH', code_num=None, name='Chinese yuan (when traded offshore)', symbols=['CN¥', '¥', 'CN¥', '¥', 'RMB', '元'], minor=2, countries=['HK']) ] In [3]: iso4217parse.country? Signature: iso4217parse.by_country(country_code) Docstring: Get all currencies used in country Parameters: country_code: unicode iso3166 alpha2 country code Returns: List[Currency]: Currency objects used in country.
Starred by 22 users
Forked by 8 users
Languages   Python 99.1% | Makefile 0.9%
🌐
GitHub
github.com › Willena › python-crypto-currencies-scraper
GitHub - Willena/python-crypto-currencies-scraper: A simple scrapper that uses coin360.com and coinmarketcap apis to populate an instant local database · GitHub
from cryptocurrencies_scraper.CurrencyService import Manager manager = Manager() # Create a new instance of the Manager manager.update() # Ask the manager to update all currencies values manager.all_currencies() # returns a dict that contain the currency name and symbol as key and currency information as a list manager.get_curency('btc') # return the list of currency values retrived for bitcoin using symbol manager.get_curency('bitcoin') # return the list of currency values retrived for bitcoin using name
Author   Willena
Find elsewhere
🌐
GitHub
github.com › NearHuscarl › py-currency
GitHub - NearHuscarl/py-currency: A python library to convert currency, prettify price and get various currency info
A python library to convert currency, prettify price and get various currency info - NearHuscarl/py-currency
Starred by 8 users
Forked by 3 users
Languages   Python 100.0% | Python 100.0%
🌐
GitHub
github.com › datasets › currency-codes
GitHub - datasets/currency-codes: ISO 4217 List of Currencies and Currency Codes · GitHub
ISO 4217 List of Currencies and Currency Codes. Contribute to datasets/currency-codes development by creating an account on GitHub.
Starred by 180 users
Forked by 179 users
Languages   Shell
🌐
GitHub
github.com › topics › currency
currency · GitHub Topics · GitHub
AKShare is an elegant and simple financial data interface library for Python, built for human beings! 开源财经数据接口库 · finance data-science data currency academic stock economics quant data-analysis bond option datasets futures financial-data fundamental asset-pricing economic-data finance-api akshare
🌐
GitHub
gist.github.com › saxbophone › 7bac014e99b7a1551e26
Python Currency Conversion · GitHub
Python Currency Conversion. GitHub Gist: instantly share code, notes, and snippets.
🌐
GitHub
github.com › topics › currency-api
currency-api · GitHub Topics · GitHub
converter time python-3 weather-api temperature-converter currency-api convert-units weight-converter user-choice base-converter length-converter speed-converter area-converter digital-data-converter gold-api silver-api pressure-converter volume-converter binary-gray decimal-excess3-xs3 ... Historical data on the rate of fiat and crypto currencies.
🌐
GitHub
github.com › quantmind › ccy
GitHub - quantmind/ccy: python module for currencies · GitHub
A python module for currencies. The module compiles a dictionary of currency objects containing information useful in financial analysis. Not all currencies in the world are supported yet.
Starred by 95 users
Forked by 28 users
Languages   Python 96.9% | Makefile 2.0% | Shell 1.1%
🌐
GitHub
github.com › py-moneyed › py-moneyed
GitHub - py-moneyed/py-moneyed: Provides Currency and Money classes for use in your Python code. · GitHub
Provides Currency and Money classes for use in your Python code. - py-moneyed/py-moneyed
Starred by 472 users
Forked by 127 users
Languages   Python
🌐
GitHub
github.com › umpirsky › currency-list
GitHub - umpirsky/currency-list: :moneybag: List of all currencies with names and ISO 4217 codes in all languages and all data formats. · GitHub
:moneybag: List of all currencies with names and ISO 4217 codes in all languages and all data formats. - umpirsky/currency-list
Starred by 326 users
Forked by 113 users
Languages   HTML 59.2% | PHP 40.8%
🌐
GitHub
github.com › topics › currency-symbols
currency-symbols · GitHub Topics · GitHub
python currency pypi symbols dollar hacktoberfest usd rs inr internation-currency currency-symbols · Updated · May 20, 2025 · Python · Star 9 · A free API offering detailed data on 200+ global currencies, including Currency codes, symbols, names, real-time exchange rates, Country names, codes, and national flag images in PNG format.
🌐
GitHub
github.com › topics › currency-codes
currency-codes · GitHub Topics · GitHub
June 17, 2023 - 🌍Comprehensive repository of global country details, including country codes, calling codes, currency codes, and more · emoji country-codes iso4217 currencies itu currency-codes iso3166-1 calling-codes openmoji un-m49 ... python crypto iso currency cryptocurrency cryptocurrencies currencies commodity currency-codes commodities iso-4217 cryptocoins fiat currency-code fiat-currencies