SimpleProxy#

Simple proxy for a NumPy array (or similar) that can be used with the Blosc2 compute engine.

This only supports the __getitem__ method. No caching is performed.

Methods#

__init__

__getitem__

Get a slice as a numpy.ndarray (via this proxy).

Attributes#

shape

The shape of the source array.

dtype

The data type of the source array.

src

The source object that this proxy wraps.