Skip to content

Instantly share code, notes, and snippets.

View bobir01's full-sized avatar
๐Ÿ™ƒ
I may be slow to respond.

Bobir bobir01

๐Ÿ™ƒ
I may be slow to respond.
View GitHub Profile
@skulltech
skulltech / dl.py
Created February 6, 2018 23:50
Handy Python function for downloading file with progress bar
import sys
import requests
def download(url, filename):
with open(filename, 'wb') as f:
response = requests.get(url, stream=True)
total = response.headers.get('content-length')
if total is None: