Open davidgfnet opened 8 years ago
Hey! Update the download.py file to use less memory:
r = s.get(config['base_url'] + url, stream = True)
Setting stream = True makes it not allocate that much memory. Since we iterate it on 1024b blocks it's not necessary.
Hey! Update the download.py file to use less memory:
r = s.get(config['base_url'] + url, stream = True)
Setting stream = True makes it not allocate that much memory. Since we iterate it on 1024b blocks it's not necessary.