1- from . import (
1+ from pandas import (
22 api as api ,
33 arrays as arrays ,
44 errors as errors ,
@@ -8,15 +8,7 @@ from . import (
88 tseries as tseries ,
99 util as util ,
1010)
11- from ._config import (
12- describe_option as describe_option ,
13- get_option as get_option ,
14- option_context as option_context ,
15- options as options ,
16- reset_option as reset_option ,
17- set_option as set_option ,
18- )
19- from .core .api import (
11+ from pandas .core .api import (
2012 NA as NA ,
2113 ArrowDtype as ArrowDtype ,
2214 BooleanDtype as BooleanDtype ,
@@ -73,9 +65,9 @@ from .core.api import (
7365 unique as unique ,
7466 value_counts as value_counts ,
7567)
76- from .core .arrays .sparse import SparseDtype as SparseDtype
77- from .core .computation .api import eval as eval
78- from .core .reshape .api import (
68+ from pandas .core .arrays .sparse import SparseDtype as SparseDtype
69+ from pandas .core .computation .api import eval as eval
70+ from pandas .core .reshape .api import (
7971 concat as concat ,
8072 crosstab as crosstab ,
8173 cut as cut ,
@@ -91,7 +83,20 @@ from .core.reshape.api import (
9183 qcut as qcut ,
9284 wide_to_long as wide_to_long ,
9385)
94- from .io .api import (
86+
87+ from pandas ._config import (
88+ describe_option as describe_option ,
89+ get_option as get_option ,
90+ option_context as option_context ,
91+ options as options ,
92+ reset_option as reset_option ,
93+ set_option as set_option ,
94+ )
95+
96+ from pandas .util ._print_versions import show_versions as show_versions
97+ from pandas .util ._tester import test as test
98+
99+ from pandas .io .api import (
95100 ExcelFile as ExcelFile ,
96101 ExcelWriter as ExcelWriter ,
97102 HDFStore as HDFStore ,
@@ -117,10 +122,8 @@ from .io.api import (
117122 read_xml as read_xml ,
118123 to_pickle as to_pickle ,
119124)
120- from .io .json import json_normalize as json_normalize
121- from .tseries import offsets as offsets
122- from .tseries .api import infer_freq as infer_freq
123- from .util ._print_versions import show_versions as show_versions
124- from .util ._tester import test as test
125+ from pandas .io .json ._normalize import json_normalize as json_normalize
126+ from pandas .tseries import offsets as offsets
127+ from pandas .tseries .api import infer_freq as infer_freq
125128
126129__version__ : str
0 commit comments