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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
|
"""Register functions as methods of Pandas DataFrame and Series."""
from __future__ import annotations
import warnings
from functools import wraps
from pandas.core.groupby.generic import DataFrameGroupBy
from pandas.util._exceptions import find_stack_level
from pandas.api.extensions import (
register_series_accessor,
register_dataframe_accessor,
)
import inspect
method_call_ctx_factory = None
def handle_pandas_extension_call(method, method_signature, obj, args, kwargs):
"""Handle pandas extension call.
This function is called when the user calls
a pandas DataFrame object's method.
The pandas extension mechanism passes args and kwargs
of the original method call as it is applied to obj.
Our implementation uses the global variable `method_call_ctx_factory`.
`method_call_ctx_factory` can be either None or an abstract class.
When `method_call_ctx_factory` is None,
the implementation calls the registered method
with unmodified args and kwargs and returns underlying method result.
When `method_call_ctx_factory` is not None,
`method_call_ctx_factory` is expected to refer to
the function to create the context object.
The context object will be used to process
inputs and outputs of `method` calls.
It is also possible that
the context object method `handle_start_method_call`
will modify original args and kwargs before `method` call.
`method_call_ctx_factory` is a function
that should have the following signature:
`f(method_name: str, args: list, kwargs: dict) -> MethodCallCtx`
MethodCallCtx is an abstract class:
class MethodCallCtx(abc.ABC):
@abstractmethod
def __enter__(self) -> None:
raise NotImplemented
@abstractmethod
def __exit__(self, exc_type, exc_value, traceback) -> None:
raise NotImplemented
@abstractmethod
def handle_start_method_call(self, method_name: str, method_signature: inspect.Signature, method_args: list, method_kwargs: dict) -> tuple(list, dict):
raise NotImplemented
@abstractmethod
def handle_end_method_call(self, ret: object) -> None:
raise NotImplemented
Args:
method (callable): method object as registered by decorator
register_dataframe_method (or register_series_method)
method_signature: signature of method as returned by inspect.signature
obj: Dataframe or Series
args: The arguments to pass to the registered method.
kwargs: The keyword arguments to pass to the registered method.
Returns:
object`: The result of calling of the method.
""" # noqa: E501
global method_call_ctx_factory
with method_call_ctx_factory(
method.__name__, args, kwargs
) as method_call_ctx:
if method_call_ctx is None: # nullcontext __enter__ returns None
ret = method(obj, *args, **kwargs)
else:
all_args = tuple([obj] + list(args))
(
new_args,
new_kwargs,
) = method_call_ctx.handle_start_method_call(
method.__name__, method_signature, all_args, kwargs
)
args = new_args[1:]
kwargs = new_kwargs
ret = method(obj, *args, **kwargs)
method_call_ctx.handle_end_method_call(ret)
return ret
def register_dataframe_method(method):
"""Register a function as a method attached to the Pandas DataFrame.
Example:
@register_dataframe_method
def print_column(df, col):
'''Print the dataframe column given'''
print(df[col])
Args:
method (callable): callable to register as a dataframe method.
Returns:
callable: The original method.
"""
method_signature = inspect.signature(method)
def inner(*args, **kwargs):
"""Inner function to register the method.
This function is called when the user
decorates a function with register_dataframe_method.
Args:
*args: The arguments to pass to the registered method.
**kwargs: The keyword arguments to pass to the registered method.
Returns:
method: The original method.
"""
class AccessorMethod(object):
"""DataFrame Accessor method class."""
def __init__(self, pandas_obj):
"""Initialize the accessor method class.
Args:
pandas_obj (pandas.DataFrame): The pandas DataFrame object.
"""
self._obj = pandas_obj
@wraps(method)
def __call__(self, *args, **kwargs):
"""Call the accessor method.
Args:
*args: The arguments to pass to the registered method.
**kwargs: The keyword arguments to pass
to the registered method.
Returns:
object: The result of calling of the method.
"""
global method_call_ctx_factory
if method_call_ctx_factory is None:
return method(self._obj, *args, **kwargs)
return handle_pandas_extension_call(
method, method_signature, self._obj, args, kwargs
)
register_dataframe_accessor(method.__name__)(AccessorMethod)
return method
return inner()
def register_series_method(method):
"""Register a function as a method attached to the Pandas Series.
Args:
method (callable): callable to register as a series method.
Returns:
callable: The original method.
"""
method_signature = inspect.signature(method)
def inner(*args, **kwargs):
"""Inner function to register the method.
Args:
*args: The arguments to pass to the registered method.
**kwargs: The keyword arguments to pass to the registered method.
Returns:
method: The original method.
"""
class AccessorMethod(object):
"""Series Accessor method class."""
__doc__ = method.__doc__
def __init__(self, pandas_obj):
"""Initialize the accessor method class.
Args:
pandas_obj (pandas.Series): The pandas Series object.
"""
self._obj = pandas_obj
@wraps(method)
def __call__(self, *args, **kwargs):
"""Call the accessor method.
Args:
*args: The arguments to pass to the registered method.
**kwargs: The keyword arguments to pass
to the registered method.
Returns:
object: The result of calling of the method.
"""
global method_call_ctx_factory
if method_call_ctx_factory is None:
return method(self._obj, *args, **kwargs)
return handle_pandas_extension_call(
method, method_signature, self._obj, args, kwargs
)
register_series_accessor(method.__name__)(AccessorMethod)
return method
return inner()
# variant of pandas' accessor
# copied from pandas' accessor file - pandas/pandas/core/accessor.py
"""
accessor.py contains base classes for implementing accessor properties
that can be mixed into or pinned onto other pandas classes.
"""
class CachedAccessor:
"""
Custom property-like object.
A descriptor for caching accessors.
Parameters
----------
name : str
Namespace that will be accessed under, e.g. ``df.foo``.
accessor : DataFrameGroupBy
Class with the extension methods.
Notes
-----
For accessor, The class's __init__ method assumes that one of
``Series``, ``DataFrame`` or ``Index`` as the
single argument ``data``.
"""
def __init__(self, name: str, accessor: DataFrameGroupBy) -> None:
self._name = name
self._accessor = accessor
def __get__(self, obj, cls):
if obj is None:
# we're accessing the attribute of the class, i.e., Dataset.geo
return self._accessor
accessor_obj = self._accessor(obj)
# Replace the property with the accessor object. Inspired by:
# https://www.pydanny.com/cached-property.html
# We need to use object.__setattr__ because we overwrite __setattr__ on
# NDFrame
object.__setattr__(obj, self._name, accessor_obj)
return accessor_obj
def _register_accessor(name: str, cls: DataFrameGroupBy):
"""
Register a custom accessor on a DataFrameGroupBy object.
Args:
name : str
Name under which the accessor should be registered.
A warning is issued
if this name conflicts with a preexisting attribute.
cls: DataFrameGroupBy
Returns:
A class decorator.
"""
def decorator(accessor):
if hasattr(cls, name):
warnings.warn(
f"registration of accessor {repr(accessor)} under name "
f"{repr(name)} for type {repr(cls)} "
"is overriding a preexisting "
f"attribute with the same name.",
UserWarning,
stacklevel=find_stack_level(),
)
setattr(cls, name, CachedAccessor(name, accessor))
if not hasattr(cls, "_accessors"):
cls._accessors = set()
cls._accessors.add(name)
return accessor
return decorator
def register_groupby_accessor(name: str):
return _register_accessor(name, DataFrameGroupBy)
def register_groupby_method(method):
"""Register a function as a method attached to the pandas DataFrameGroupBy.
Example:
>>> @register_groupby_method # doctest: +SKIP
>>> def print_column(grp, col): # doctest: +SKIP
... '''Print the dataframe column given''' # doctest: +SKIP
... print(grp[col]) # doctest: +SKIP
!!! info "New in version 0.7.0"
Args:
method: Function to be registered as a method
on the DataFrameGroupBy object.
Returns:
callable: The original method.
"""
method_signature = inspect.signature(method)
def inner(*args: tuple, **kwargs: dict):
"""Inner function to register the method.
This function is called when the user
decorates a function with register_groupby_method.
Args:
*args: The arguments to pass to the registered method.
**kwargs: The keyword arguments to pass to the registered method.
Returns:
method: The original method.
"""
class AccessorMethod(object):
"""DataFrameGroupBy Accessor method class."""
__doc__ = method.__doc__
def __init__(self, obj):
"""Initialize the accessor method class.
Args:
obj: The pandas DataFrameGroupBy object.
"""
self._obj = obj
@wraps(method)
def __call__(self, *args, **kwargs):
"""Call the accessor method.
Args:
*args: The arguments to pass to the registered method.
**kwargs: The keyword arguments to pass
to the registered method.
Returns:
object: The result of calling of the method.
"""
global method_call_ctx_factory
if method_call_ctx_factory is None:
return method(self._obj, *args, **kwargs)
return handle_pandas_extension_call(
method, method_signature, self._obj, args, kwargs
)
register_groupby_accessor(method.__name__)(AccessorMethod)
return method
return inner()
|