Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/pwwang/datar-numpy
- Owner: pwwang
- License: mit
- Created: 2022-10-26T23:36:10.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-02-08T23:39:54.000Z (11 months ago)
- Last Synced: 2024-12-13T03:51:30.825Z (21 days ago)
- Language: Python
- Homepage:
- Size: 185 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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