Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

The numpy backend for datar.
https://github.com/pwwang/datar-numpy

Last synced: 14 days ago
JSON representation

The numpy backend for datar.

Awesome Lists containing this project

README

        

# datar-numpy

The numpy backend for [datar][1].

Note that only `base` APIs are implemented.

## Installation

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

## 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