Skip to content

Commit

Permalink
Split Excel IO Into Sub-Directory (pandas-dev#25153)
Browse files Browse the repository at this point in the history
  • Loading branch information
WillAyd authored and Pingviinituutti committed Feb 28, 2019
1 parent 3aa0875 commit a121692
Show file tree
Hide file tree
Showing 8 changed files with 2,058 additions and 2,028 deletions.
2,028 changes: 0 additions & 2,028 deletions pandas/io/excel.py

This file was deleted.

16 changes: 16 additions & 0 deletions pandas/io/excel/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from pandas.io.excel._base import read_excel, ExcelWriter, ExcelFile
from pandas.io.excel._openpyxl import _OpenpyxlWriter
from pandas.io.excel._util import register_writer
from pandas.io.excel._xlsxwriter import _XlsxWriter
from pandas.io.excel._xlwt import _XlwtWriter

__all__ = ["read_excel", "ExcelWriter", "ExcelFile"]


register_writer(_OpenpyxlWriter)


register_writer(_XlwtWriter)


register_writer(_XlsxWriter)
Loading

0 comments on commit a121692

Please sign in to comment.