8th day of python challenges 111-117
This commit is contained in:
2
venv/lib/python3.6/site-packages/pandas/api/__init__.py
Normal file
2
venv/lib/python3.6/site-packages/pandas/api/__init__.py
Normal file
@@ -0,0 +1,2 @@
|
||||
""" public toolkit API """
|
||||
from . import extensions, types # noqa
|
@@ -0,0 +1,13 @@
|
||||
"""Public API for extending pandas objects."""
|
||||
from pandas.core.dtypes.dtypes import ( # noqa: F401
|
||||
ExtensionDtype,
|
||||
register_extension_dtype,
|
||||
)
|
||||
|
||||
from pandas.core.accessor import ( # noqa: F401
|
||||
register_dataframe_accessor,
|
||||
register_index_accessor,
|
||||
register_series_accessor,
|
||||
)
|
||||
from pandas.core.algorithms import take # noqa: F401
|
||||
from pandas.core.arrays import ExtensionArray, ExtensionScalarOpsMixin # noqa: F401
|
@@ -0,0 +1,12 @@
|
||||
""" public toolkit API """
|
||||
|
||||
from pandas._libs.lib import infer_dtype # noqa: F401
|
||||
|
||||
from pandas.core.dtypes.api import * # noqa: F403, F401
|
||||
from pandas.core.dtypes.concat import union_categoricals # noqa: F401
|
||||
from pandas.core.dtypes.dtypes import ( # noqa: F401
|
||||
CategoricalDtype,
|
||||
DatetimeTZDtype,
|
||||
IntervalDtype,
|
||||
PeriodDtype,
|
||||
)
|
Reference in New Issue
Block a user