Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.8/site-packages/openpyxl/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

13 statements  

1# Copyright (c) 2010-2024 openpyxl 

2 

3DEBUG = False 

4 

5from openpyxl.compat.numbers import NUMPY 

6from openpyxl.xml import DEFUSEDXML, LXML 

7from openpyxl.workbook import Workbook 

8from openpyxl.reader.excel import load_workbook as open 

9from openpyxl.reader.excel import load_workbook 

10import openpyxl._constants as constants 

11 

12# Expose constants especially the version number 

13 

14__author__ = constants.__author__ 

15__author_email__ = constants.__author_email__ 

16__license__ = constants.__license__ 

17__maintainer_email__ = constants.__maintainer_email__ 

18__url__ = constants.__url__ 

19__version__ = constants.__version__