File size: 493 Bytes
7fb74eb
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# backend/__init__.py

# Import functions from individual modules to make them accessible directly from the 'backend' package
from .sentiment_analyzer import analyze_sentiment
from .sarcasm_detector import detect_sarcasm_and_highlight
from .csv_processor import process_csv_for_dashboard

# You can also define __all__ to explicitly list what gets imported with `from backend import *`
__all__ = [
    "analyze_sentiment",
    "detect_sarcasm_and_highlight",
    "process_csv_for_dashboard"
]