Skip to content

Instantly share code, notes, and snippets.

@prerakmody
Created July 16, 2018 11:21
Show Gist options
  • Save prerakmody/546e5165c45130257e506f3885b787f3 to your computer and use it in GitHub Desktop.
Save prerakmody/546e5165c45130257e506f3885b787f3 to your computer and use it in GitHub Desktop.
Python Requests Library
import requests
if __name__ == "__main__":
r = requests.get(remote_url)
with open(local_url, 'wb') as fp:
fp.write(r.content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment