import
requests
url
=
"https://example.com/file.pdf"
response
requests.get(url)
with
open
(
"file.pdf"
,
"wb"
) as
file
:
.write(response.content)