Spaces:
Paused
Paused
File size: 346 Bytes
34367da | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/usr/bin/env python3
"""Test exchangelib import"""
import sys
print(f"Python: {sys.executable}")
print(f"Path: {sys.path[:3]}")
try:
from exchangelib import Account, Credentials
print("✅ exchangelib imported successfully!")
except ImportError as e:
print(f"❌ Import failed: {e}")
import traceback
traceback.print_exc()
|