gdownを使って行えます。(Colaboratoryに初めからインストールされています。)
以下のように記載します。
!gdown --id yourFileIdHere
idは共有ファイルのURLから取得します。
例えば以下のURLの場合は、「0B_URf9ZWjAW7SC11Xzc4R2d0N2c」がidです。
https://drive.google.com/open?id=0B_URf9ZWjAW7SC11Xzc4R2d0N2c
残念ながら1Gバイト以上のファイルだとダウンロードできませんでした。
以下のコードを使って、1Gバイト以上のファイルをダウンロードできました。
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)
使い方は以下です。
download_file_from_google_drive("0B7EVK8r0v71pZjFTYXZWM3FlRnM", "celebA.zip")

0 件のコメント :
コメントを投稿