Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pwwang/datar-arrow
https://github.com/pwwang/datar-arrow
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pwwang/datar-arrow
- Owner: pwwang
- License: mit
- Created: 2023-05-10T03:26:38.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-08T03:32:51.000Z (about 1 year ago)
- Last Synced: 2024-12-10T04:27:04.390Z (24 days ago)
- Language: Python
- Size: 91.8 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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