argopy.IndexFetcher.to_csv

argopy.IndexFetcher.to_csv

IndexFetcher.to_csv(file: str = 'output_file.csv')

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