Spaces:
Runtime error
Runtime error
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")
|