if I need to download a specific google sheet with Python and pydrive I can use a simple command like this:
drive.CreateFile({'id':'[sheetID]}).GetContentFile('file.csv', mimetype='text/csv')
this works, but, in this case, I download in CSV only the first sheet of the Google File.
If in this file there are multiple sheets and I need to download a specific sheet, maybe by the ID that I can see in the URL "...edit#gid=111115555", how can I change the command?
I'd like to download a sheet regardless the position or the name of this one.
Can you help me?
Thanks in advance