Download file
Tags: #googledrive #snippet #operations #naas
Last update: 2023-04-12 (Created: 2021-02-28)
Description: This notebook allows users to download files from their Google Drive account.
Pre-requisite : change file access rights to make sure Naas can access ("Allow anyone") If you need more specific user rights, just drop us an email [email protected]
try:
import gdown
except:
!pip install gdown
import gdown
url = "https://drive.google.com/uc?id=1-3UlYEPKgL4E197umEh6d58jWknodSm5"
output = "naas_happy_hour.mp4"
gdown.download(url, output, quiet=False)
Last modified 1mo ago