/datar-arrow

Primary LanguagePythonMIT LicenseMIT

datar-arrow

The pyarrow backend for datar.

Note that only base APIs are implemented.

Installation

pip install -U datar-arrow
# or
pip install -U datar[arrow]

Usage

from datar.base import ceiling

# without it
ceiling(1.2)  # NotImplementedByCurrentBackendError

# with it
ceiling(1.2)  # 2