Coverage for /home/martinb/.local/share/virtualenvs/camcops/lib/python3.6/site-packages/openpyxl/__init__.py : 100%

Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# Copyright (c) 2010-2020 openpyxl
4from openpyxl.compat.numbers import NUMPY, PANDAS
5from openpyxl.xml import DEFUSEDXML, LXML
6from openpyxl.workbook import Workbook
7from openpyxl.reader.excel import load_workbook as open
8from openpyxl.reader.excel import load_workbook
9import openpyxl._constants as constants
11# Expose constants especially the version number
13__author__ = constants.__author__
14__author_email__ = constants.__author_email__
15__license__ = constants.__license__
16__maintainer_email__ = constants.__maintainer_email__
17__url__ = constants.__url__
18__version__ = constants.__version__