"from pathlib import Path\nfrom generate_pdf import generate_political_pdf\n\njob_dir = Path(r\"c:\\Users\\sunde\\proxmox\\news-scan\\output\\20260611_161537\")\n\nmock_selected = [\n {\n \"id\": \"p001_a002\",\n \"headline_english\": \"Mock Headline: Government Fails to Deliver Promises on Agriculture\",\n \"priority\": \"high\",\n \"category\": \"farmer_issues\",\n \"political_significance\": \"Shows direct failure of government to support farmers leading to massive distress.\",\n \"attack_angle\": \"The ruling party claimed they are pro-farmer, but this report proves they are letting farmers suffer without MSP.\"\n },\n {\n \"id\": \"p001_a003\",\n \"headline_english\": \"Corruption Allegations in Irrigation Project\",\n \"priority\": \"medium\",\n \"category\": \"corruption\",\n \"political_significance\": \"Highlights massive irregularities in the tender process.\",\n \"attack_angle\": \"Demand an immediate CBI probe into the 500-crore scam.\"\n }\n]\n\nprint(\"Generating mock PDF...\")\ngenerate_political_pdf(mock_selected, job_dir)\nprint(\"Done!\")\n"