Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我实际上正在编写一个 python 代码,我想在其中获得一个带有“pygsheets”库的谷歌文档工作表作为熊猫数据框。我目前正在这样做:
gc = pygsheets.authorize(credentials=credentials) sh = gc.open_by_key('KEY') wks = sh.worksheet_by_title('SHEET 1') df_pd = wks.get_as_df()
我怎样才能只获取文档中未隐藏的行?
谢谢 !