<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import requests

r = requests.get("http://some/url.zip")
with open("my_data.zip", "wb") as code:
	code.write(r.content)
</pre></body></html>