So I am playing with google spreadsheets and there is a handy feature to freeze first row or/and first column. But is there a way to do this through pygsheets?
Or maybe other python library?
Use the frozen_row
and frozen_column
worksheet properties. To freeze the first 2 rows, use wks.frozen_rows=2
. See more info in docs