File size: 562 Bytes
db6dcad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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")