Spaces:
Runtime error
Runtime error
File size: 445 Bytes
8126b08 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # 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'
]
|