__init__.py 603 B

12345678910111213141516171819
  1. # Copyright (c) 2010-2024 openpyxl
  2. DEBUG = False
  3. from openpyxl.compat.numbers import NUMPY
  4. from openpyxl.xml import DEFUSEDXML, LXML
  5. from openpyxl.workbook import Workbook
  6. from openpyxl.reader.excel import load_workbook as open
  7. from openpyxl.reader.excel import load_workbook
  8. import openpyxl._constants as constants
  9. # Expose constants especially the version number
  10. __author__ = constants.__author__
  11. __author_email__ = constants.__author_email__
  12. __license__ = constants.__license__
  13. __maintainer_email__ = constants.__maintainer_email__
  14. __url__ = constants.__url__
  15. __version__ = constants.__version__