#!/usr/bin/env python3 """ DEPRECATED SCRIPT NAME (kept for backward compatibility). The input `data/mai_jia_jing_ling/products_data/*.xlsx` files are Amazon-format exports (Parent/Child ASIN), not “competitor data”. Please use: - `scripts/amazon_xlsx_to_shoplazza_xlsx.py` This wrapper simply forwards all CLI args to the correctly named script, so you automatically get the latest performance improvements (fast read/write). """ import sys from pathlib import Path # Allow running as `python scripts/xxx.py` without installing as a package sys.path.insert(0, str(Path(__file__).resolve().parent)) from amazon_xlsx_to_shoplazza_xlsx import main as amazon_main if __name__ == "__main__": amazon_main()