当前位置: 代码迷 >> 综合 >> How to download Google Drive Big Data
  详细解决方案

How to download Google Drive Big Data

热度:54   发布时间:2024-01-16 22:53:25.0

How to download the Google Drive big Datasets

  • Frist step was to get the id number from file link
  • The second step was to use code I put here.

Frist step was to get the id number from file link

获取共享链接
I get the link was ‘https://drive.google.com/open?id=1EOB5jYERvCkp-xYB0XFTFSH3EPo9n1eJ’.
And the id was 1EOB5jYERvCkp-xYB0XFTFSH3EPo9n1eJ

The second step was to use code I put here.

!wget --load-cookies /tmp/cookies.txt "https://docs.google.com/uc?export=download&confirm=$(wget --quiet --save-cookies /tmp/cookies.txt --keep-session-cookies --no-check-certificate 'https://docs.google.com/uc?export=download&id=1EOB5jYERvCkp-xYB0XFTFSH3EPo9n1eJ' -O- | sed -rn 's/.*confirm=([0-9A-Za-z_]+).*/\1\n/p')&id=1EOB5jYERvCkp-xYB0XFTFSH3EPo9n1eJ" -O cba.zip && rm -rf /tmp/cookies.txt

在这里插入图片描述

  相关解决方案