Skip to content

Instantly share code, notes, and snippets.

@grimpy
grimpy / gdrivedl
Last active June 6, 2020 07:29 — forked from joshtch/gdrive-dl.py
Google Drive file downloader for Python, with progress bar with tqdm. Based on this SO answer https://stackoverflow.com/a/39225039/3175094
#!/usr/bin/env python
import requests
import sys
import os
from tqdm import tqdm
def download_file_from_google_drive(id, destination=None):
URL = "https://docs.google.com/uc?export=download"