argopy.fetchers.ArgoIndexFetcher.to_csv#

ArgoIndexFetcher.to_csv(file: str = 'output_file.csv')[source]#

Fetch and save index data as csv in a file

Notes

>>> idx.to_csv()
is a shortcut to:
>>> idx.load().index.to_csv()

Since the index property is a pandas.DataFrame, this is currently a short cut to pandas.DataFrame.to_index()

Return type:

None