-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
27 lines (24 loc) · 754 Bytes
/
main.py
File metadata and controls
27 lines (24 loc) · 754 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/env python3
"""
ScayNum - Advanced OSINT Tool
Main entry point for easy execution
"""
import os
import sys
# Add scripts directory to path
scripts_dir = os.path.join(os.path.dirname(__file__), 'scripts')
sys.path.insert(0, scripts_dir)
# Import and run the main ScayNum application
if __name__ == "__main__":
try:
from core import main
main()
except ImportError as e:
print("❌ Error: Could not import ScayNum modules")
print(f" Details: {e}")
print("\n💡 Make sure you're running this from the ScayNum root directory")
print(" and all dependencies are installed.")
sys.exit(1)
except Exception as e:
print(f"❌ Unexpected error: {e}")
sys.exit(1)