I have a template worksheet in a spreadsheet that I need to duplicate to another spreadsheet. How can I achieve this with gspread?
gs = gspread.oauth()
template_sh = gs.open_by_key(TEMPLATE_SHEET_ID)
template_ws = template_sh.worksheet('Template')
target_sh = gs.open_by_key(TARGET_SHEET_ID)
Is there anything like
target_sh.upload(template_ws)
?