#!/usr/bin/env python3
"""Convenience wrapper for YouTube video downloading."""

import sys
from pathlib import Path

# Add the scripts directory to Python path
scripts_dir = Path(__file__).parent
sys.path.insert(0, str(scripts_dir.parent))

# Import and run the main function
from scripts.get_youtube import main

if __name__ == "__main__":
    main()