Metadata-Version: 2.4
Name: datar-arrow
Version: 0.2.1
Summary: The pyarrow backend for datar
Author-email: pwwang <pwwang@pwwang.com>
License: MIT
License-File: LICENSE
Requires-Python: >=3.9
Requires-Dist: datar>=0.15
Requires-Dist: pyarrow>=20
Provides-Extra: all
Requires-Dist: scipy>=1.6; extra == 'all'
Requires-Dist: wcwidth>=0.2; extra == 'all'
Provides-Extra: scipy
Requires-Dist: scipy>=1.6; extra == 'scipy'
Provides-Extra: wcwidth
Requires-Dist: wcwidth>=0.2; extra == 'wcwidth'
Description-Content-Type: text/markdown

# datar-arrow

The pyarrow backend for [datar][1].

Note that only `base` APIs are implemented.

## Installation

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

## Usage

```python
from datar.base import ceiling

# without it
ceiling(1.2)  # NotImplementedByCurrentBackendError

# with it
ceiling(1.2)  # 2
```

[1]: https://github.com/pwwang/datar
