pythondef copy_with_prefix(src, dst): r = export_from(src) pages = r.json()["pages"] for p in pages: p["title"] = f"🔒{src}/" + p["title"] write_pages(dst, pages)