planify / app /CurrencyMapping /__init__.py
devZenaight's picture
Test Planify V1
8126b08
Raw
History Blame Contribute Delete
445 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'
]