1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- from __future__ import absolute_import
- # Copyright (c) 2010-2019 openpyxl
- try:
- # Python 2
- long = long
- except NameError:
- # Python 3
- long = int
- from decimal import Decimal
- NUMERIC_TYPES = (int, float, long, Decimal)
- try:
- import numpy
- NUMPY = True
- except ImportError:
- NUMPY = False
- if NUMPY:
- NUMERIC_TYPES = NUMERIC_TYPES + (numpy.short,
- numpy.ushort,
- numpy.intc,
- numpy.uintc,
- numpy.int_,
- numpy.uint,
- numpy.longlong,
- numpy.ulonglong,
- numpy.half,
- numpy.float16,
- numpy.single,
- numpy.double,
- numpy.longdouble,
- numpy.int8,
- numpy.int16,
- numpy.int32,
- numpy.int64,
- numpy.uint8,
- numpy.uint16,
- numpy.uint32,
- numpy.uint64,
- numpy.intp,
- numpy.uintp,
- numpy.float32,
- numpy.float64,
- numpy.float,
- numpy.bool_,
- numpy.floating,
- numpy.integer)
- try:
- import pandas
- PANDAS = True
- except ImportError:
- PANDAS = False
|