I need to get the iso currency symbol, without using the built-in python locale module.
The locale
module needs to be the locale installed at the OS. I want to run my code on a serverless environment, so install any OS additional package is an obstacle.
What I need is equivalent to that:
import locale
locale.setlocale(locale.LC_ALL, ('en_US', 'utf-8'))
currency_symbol = locale.localeconv()['int_curr_symbol']