P ython is an interpreted high-level general-purpose programming language. Python’s design philosophy emphasizes code readability with its notable use of significant indentation. Its language constructs as well as its object-oriented approach aim to help programmers write clear, logical code for small and large-scale projects. Source: Wikipedia
How To Download A File From
Google Drive With Python
Here you can find the code.
import gdown import os path = "data" os.makedirs(path, exist_ok=True) id = 'XPTO' url = 'https://drive.google.com/uc?id='+id print(url) output = path+'/qualquer.zip' gdown.download(url, output, quiet=False) gdown --id 1CxizD8iCPsdHRQZnP3D7ibJe9dBB5Yjs