Singtel_Use_Case1 / start_enhanced.py
cosmoruler
stuck already
db6dcad
raw
history blame contribute delete
562 Bytes
#!/usr/bin/env python3
"""
Direct launcher for Enhanced Data Explorer
"""
from upload import EnhancedDataExplorer
print("πŸš€ Starting Enhanced Data Explorer with AI...")
print("πŸ”„ Initializing...")
try:
explorer = EnhancedDataExplorer()
print("\nπŸ“‹ System Status:")
explorer.check_status()
print("\n🎯 Starting interactive menu...")
explorer.interactive_menu()
except KeyboardInterrupt:
print("\nπŸ‘‹ Goodbye!")
except Exception as e:
print(f"\n❌ Error: {e}")
print("πŸ’‘ Try running: python upload.py")