Zenaight's picture
Upload 24 files
2d2c483 verified
Raw
History Blame Contribute Delete
462 Bytes
# Currency Mapping Package
import os
import sys
# Add the current directory to sys.path to handle the space in folder name
current_dir = os.path.dirname(__file__)
if current_dir not in sys.path:
sys.path.insert(0, current_dir)
# Import the main function for easy access
from currency_mapping import convert_currency_symbols_to_iso, canonical_currency_map
__all__ = [
'convert_currency_symbols_to_iso',
'canonical_currency_map'
]