I'll try to be straight forward into this.
I've got a spreadsheet URL like this: https://docs.google.com/spreadsheets/d/1231SDFS3afer3SDfsdf-34SDFSDgfdsd42/edit#gid=5439787534
where the part gid=5439787534
points to the exact sheet inside the spreadsheet I want to access. I'm using python + gspred to access it, but I'm not finding a way to get to the GID I stated above.
My code is like this for now:
wb = client.open_by_url('https://docs.google.com/spreadsheets/d/1231SDFS3afer3SDfsdf-34SDFSDgfdsd42/edit#gid=5439787534')
But it doesn't access the sheet, it just access the spreadsheet in general, not accessing the exact tab I need..
Any help please?