File tree 1 file changed +8
-5
lines changed
1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -871,11 +871,14 @@ class ExcelWriter(metaclass=abc.ABCMeta):
871
871
"""
872
872
Class for writing DataFrame objects into excel sheets.
873
873
874
- Default is to use :
875
- * xlwt for xls
876
- * xlsxwriter for xlsx if xlsxwriter is installed otherwise openpyxl
877
- * odf for ods.
878
- See DataFrame.to_excel for typical usage.
874
+ Default is to use:
875
+
876
+ * `xlwt <https://pypi.org/project/xlwt/>`__ for xls files
877
+ * `xlsxwriter <https://pypi.org/project/XlsxWriter/>`__ for xlsx files if xlsxwriter
878
+ is installed otherwise `openpyxl <https://pypi.org/project/openpyxl/>`__
879
+ * `odswriter <https://pypi.org/project/odswriter/>`__ for ods files
880
+
881
+ See ``DataFrame.to_excel`` for typical usage.
879
882
880
883
The writer should be used as a context manager. Otherwise, call `close()` to save
881
884
and close any opened file handles.
You can’t perform that action at this time.
0 commit comments