Python: Export Pandas DataFrame to Google Sheets (SOLVED)
Yes, there is a module called "gspread". Just install it with pip and import it into your script.
Here you can find the documentation: https://gspread.readthedocs.io/en/latest/
In particular their section on Examples of gspread with pandas.
worksheet.update([dataframe.columns.values.tolist()] + dataframe.values.tolist())