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