Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pwwang/datar-arrow


https://github.com/pwwang/datar-arrow

Last synced: 14 days ago
JSON representation

Awesome Lists containing this project

README

        

# 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