Skip to content

Instantly share code, notes, and snippets.

View yngfoxx's full-sized avatar
🎯
Focusing

Stephen Osunrinde yngfoxx

🎯
Focusing
View GitHub Profile
@yngfoxx
yngfoxx / python-downloader.py
Created April 20, 2021 09:06 — forked from tobiasraabe/python-downloader.py
Script to download files, resume downloads and validate downloads. Everything wrapped with a beautiful progressbar.
import click
import hashlib
import requests
from pathlib import Path
from tqdm import tqdm
CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help'])