mirror of
https://github.com/Arrowar/StreamingCommunity.git
synced 2025-06-06 19:45:24 +00:00
23 lines
389 B
Python
23 lines
389 B
Python
# 16.05.24
|
|
|
|
currency_mapping = {
|
|
'₿': 'bitcoin',
|
|
'₵': 'cedi',
|
|
'¢': 'cent',
|
|
'₡': 'colon',
|
|
'₢': 'cruzeiro',
|
|
'₫': 'dong',
|
|
'֏': 'dram',
|
|
'€': 'euro',
|
|
'₯': 'drachma',
|
|
'₣': 'franc',
|
|
'₤': 'lira',
|
|
'₾': 'lari',
|
|
'₨': 'rupee',
|
|
'৳': 'taka',
|
|
'₮': 'tugrik',
|
|
'₩': 'won',
|
|
'¥': 'yen',
|
|
'₴': 'hryvnia'
|
|
}
|