我想在通过 smtp-ssh 连接的远程机器上从 pandas 数据帧写入 csv 文件。有人知道如何正确添加“storage_options”参数吗?
Pandas 文档说我必须使用一些 dict 作为参数的值。但我不明白到底是哪个。
hits_df.to_csv('hits20.tsv', compression='gzip', index='False', chunksize=1000000, storage_options={???})
每次我得到ValueError: storage_options passed with file object or non-fsspec file path
我究竟做错了什么?