Skip to content

Instantly share code, notes, and snippets.

@anant15
Last active May 6, 2020 20:12
Show Gist options
  • Save anant15/27ac41fc7d21926d5319020cd85d4f27 to your computer and use it in GitHub Desktop.
Save anant15/27ac41fc7d21926d5319020cd85d4f27 to your computer and use it in GitHub Desktop.
import requests
def download_file_from_google_drive(id, destination):
def get_confirm_token(response):
for key, value in response.cookies.items():
if key.startswith('download_warning'):
return value
return None
def save_response_content(response, destination):
CHUNK_SIZE = 32768
with open(destination, "wb") as f:
for chunk in response.iter_content(CHUNK_SIZE):
if chunk: # filter out keep-alive new chunks
f.write(chunk)
URL = "https://docs.google.com/uc?export=download"
session = requests.Session()
response = session.get(URL, params = { 'id' : id }, stream = True)
token = get_confirm_token(response)
if token:
params = { 'id' : id, 'confirm' : token }
response = session.get(URL, params = params, stream = True)
save_response_content(response, destination)
@anant15
Copy link
Author

anant15 commented May 6, 2020

The following Python function downloads a big file Google Drive and saves it to a given destination.

I had to download this big Google Driver folder https://drive.google.com/drive/folders/0B7EVK8r0v71pWEZsZE9oNnFzTm8

Running download_file_from_google_drive("0B7EVK8r0v71pWEZsZE9oNnFzTm8 ", "celeba.zip") downloaded the folder and saved it as a zip file in my working directory.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment