Skip to content

Instantly share code, notes, and snippets.

@pointofpresence
Last active March 31, 2024 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pointofpresence/b877d5f232bb48705ea9b555a9fc1c67 to your computer and use it in GitHub Desktop.
Save pointofpresence/b877d5f232bb48705ea9b555a9fc1c67 to your computer and use it in GitHub Desktop.
Python: Скачать и сохранить бинарный файл
# Binary request and save
# Request the profile picture of the OP:
response = requests.get("https://i.stack.imgur.com/iysmF.jpg?s=32&g=1")
with open("response.jpg", "wb") as f:
f.write(response.content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment