blob: f6b2a7337f5ee431fe85be905c3c23fe90046ccd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
from __future__ import annotations
from typing import TYPE_CHECKING
from narwhals._compliant import CompliantSelector, EagerSelectorNamespace
from narwhals._pandas_like.expr import PandasLikeExpr
if TYPE_CHECKING:
from narwhals._pandas_like.dataframe import PandasLikeDataFrame # noqa: F401
from narwhals._pandas_like.series import PandasLikeSeries # noqa: F401
class PandasSelectorNamespace(
EagerSelectorNamespace["PandasLikeDataFrame", "PandasLikeSeries"]
):
@property
def _selector(self) -> type[PandasSelector]:
return PandasSelector
class PandasSelector( # type: ignore[misc]
CompliantSelector["PandasLikeDataFrame", "PandasLikeSeries"], PandasLikeExpr
):
def _to_expr(self) -> PandasLikeExpr:
return PandasLikeExpr(
self._call,
depth=self._depth,
function_name=self._function_name,
evaluate_output_names=self._evaluate_output_names,
alias_output_names=self._alias_output_names,
implementation=self._implementation,
backend_version=self._backend_version,
version=self._version,
)
|