Updated script that can be controled by Nodejs web app
This commit is contained in:
16
lib/python3.13/site-packages/pandas/api/__init__.py
Normal file
16
lib/python3.13/site-packages/pandas/api/__init__.py
Normal file
@ -0,0 +1,16 @@
|
||||
""" public toolkit API """
|
||||
from pandas.api import (
|
||||
extensions,
|
||||
indexers,
|
||||
interchange,
|
||||
types,
|
||||
typing,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"interchange",
|
||||
"extensions",
|
||||
"indexers",
|
||||
"types",
|
||||
"typing",
|
||||
]
|
Binary file not shown.
@ -0,0 +1,33 @@
|
||||
"""
|
||||
Public API for extending pandas objects.
|
||||
"""
|
||||
|
||||
from pandas._libs.lib import no_default
|
||||
|
||||
from pandas.core.dtypes.base import (
|
||||
ExtensionDtype,
|
||||
register_extension_dtype,
|
||||
)
|
||||
|
||||
from pandas.core.accessor import (
|
||||
register_dataframe_accessor,
|
||||
register_index_accessor,
|
||||
register_series_accessor,
|
||||
)
|
||||
from pandas.core.algorithms import take
|
||||
from pandas.core.arrays import (
|
||||
ExtensionArray,
|
||||
ExtensionScalarOpsMixin,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"no_default",
|
||||
"ExtensionDtype",
|
||||
"register_extension_dtype",
|
||||
"register_dataframe_accessor",
|
||||
"register_index_accessor",
|
||||
"register_series_accessor",
|
||||
"take",
|
||||
"ExtensionArray",
|
||||
"ExtensionScalarOpsMixin",
|
||||
]
|
Binary file not shown.
17
lib/python3.13/site-packages/pandas/api/indexers/__init__.py
Normal file
17
lib/python3.13/site-packages/pandas/api/indexers/__init__.py
Normal file
@ -0,0 +1,17 @@
|
||||
"""
|
||||
Public API for Rolling Window Indexers.
|
||||
"""
|
||||
|
||||
from pandas.core.indexers import check_array_indexer
|
||||
from pandas.core.indexers.objects import (
|
||||
BaseIndexer,
|
||||
FixedForwardWindowIndexer,
|
||||
VariableOffsetWindowIndexer,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"check_array_indexer",
|
||||
"BaseIndexer",
|
||||
"FixedForwardWindowIndexer",
|
||||
"VariableOffsetWindowIndexer",
|
||||
]
|
Binary file not shown.
@ -0,0 +1,8 @@
|
||||
"""
|
||||
Public API for DataFrame interchange protocol.
|
||||
"""
|
||||
|
||||
from pandas.core.interchange.dataframe_protocol import DataFrame
|
||||
from pandas.core.interchange.from_dataframe import from_dataframe
|
||||
|
||||
__all__ = ["from_dataframe", "DataFrame"]
|
Binary file not shown.
23
lib/python3.13/site-packages/pandas/api/types/__init__.py
Normal file
23
lib/python3.13/site-packages/pandas/api/types/__init__.py
Normal file
@ -0,0 +1,23 @@
|
||||
"""
|
||||
Public toolkit API.
|
||||
"""
|
||||
|
||||
from pandas._libs.lib import infer_dtype
|
||||
|
||||
from pandas.core.dtypes.api import * # noqa: F403
|
||||
from pandas.core.dtypes.concat import union_categoricals
|
||||
from pandas.core.dtypes.dtypes import (
|
||||
CategoricalDtype,
|
||||
DatetimeTZDtype,
|
||||
IntervalDtype,
|
||||
PeriodDtype,
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
"infer_dtype",
|
||||
"union_categoricals",
|
||||
"CategoricalDtype",
|
||||
"DatetimeTZDtype",
|
||||
"IntervalDtype",
|
||||
"PeriodDtype",
|
||||
]
|
Binary file not shown.
55
lib/python3.13/site-packages/pandas/api/typing/__init__.py
Normal file
55
lib/python3.13/site-packages/pandas/api/typing/__init__.py
Normal file
@ -0,0 +1,55 @@
|
||||
"""
|
||||
Public API classes that store intermediate results useful for type-hinting.
|
||||
"""
|
||||
|
||||
from pandas._libs import NaTType
|
||||
from pandas._libs.missing import NAType
|
||||
|
||||
from pandas.core.groupby import (
|
||||
DataFrameGroupBy,
|
||||
SeriesGroupBy,
|
||||
)
|
||||
from pandas.core.resample import (
|
||||
DatetimeIndexResamplerGroupby,
|
||||
PeriodIndexResamplerGroupby,
|
||||
Resampler,
|
||||
TimedeltaIndexResamplerGroupby,
|
||||
TimeGrouper,
|
||||
)
|
||||
from pandas.core.window import (
|
||||
Expanding,
|
||||
ExpandingGroupby,
|
||||
ExponentialMovingWindow,
|
||||
ExponentialMovingWindowGroupby,
|
||||
Rolling,
|
||||
RollingGroupby,
|
||||
Window,
|
||||
)
|
||||
|
||||
# TODO: Can't import Styler without importing jinja2
|
||||
# from pandas.io.formats.style import Styler
|
||||
from pandas.io.json._json import JsonReader
|
||||
from pandas.io.stata import StataReader
|
||||
|
||||
__all__ = [
|
||||
"DataFrameGroupBy",
|
||||
"DatetimeIndexResamplerGroupby",
|
||||
"Expanding",
|
||||
"ExpandingGroupby",
|
||||
"ExponentialMovingWindow",
|
||||
"ExponentialMovingWindowGroupby",
|
||||
"JsonReader",
|
||||
"NaTType",
|
||||
"NAType",
|
||||
"PeriodIndexResamplerGroupby",
|
||||
"Resampler",
|
||||
"Rolling",
|
||||
"RollingGroupby",
|
||||
"SeriesGroupBy",
|
||||
"StataReader",
|
||||
# See TODO above
|
||||
# "Styler",
|
||||
"TimedeltaIndexResamplerGroupby",
|
||||
"TimeGrouper",
|
||||
"Window",
|
||||
]
|
Binary file not shown.
Reference in New Issue
Block a user