Closed
Description
numexpr/bottleneck
are ok by default
you can check with something like this:
[jreback-~/pandas] python -v -c 'import pandas' > & out
[jreback-~/pandas] grep 'import ' out | more
-
The converters are set, not so easy to remove.matplotlib
(not sure if this is possible to remove by default) -
io/packers.py
importsblosc
and possibly other things, CLN: make sure that we don't have extraneous imports #9482 -
io/gbq.py
import a lot of things (e.g.apiclient/googleapiclient/oauth2client/gflags
), CLN: make sure that we don't have extraneous imports #9482 -
this is set inxlsxwriter
core/config_init.py
for the default engine. Not easy to remove. -
html5lib/bs4
(fromio/html.py
), CLN: make sure that we don't have extraneous imports #9482
These should be done on first usage of the library, and not on general import
like in io/pytables.py
(e.g. the _tables()
) call.