import requests
url = "https://www.instagram.com/p/DVOazPSjJQm/embed"
print(f"Fetching {url}")
res = requests.get(url, headers={'User-Agent': 'Mozilla/5.0'})
with open("embed_page.html", "w", encoding="utf-8") as f:
    f.write(res.text)
print("Saved to embed_page.html")
