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

https://github.com/narrativescience-old/cubejs-client-async

Async Python Cube.js client
https://github.com/narrativescience-old/cubejs-client-async

Last synced: 7 months ago
JSON representation

Async Python Cube.js client

Awesome Lists containing this project

README

          

# cubejsclientasync

[![](https://img.shields.io/pypi/v/cubejsclientasync.svg)](https://pypi.org/pypi/cubejsclientasync/) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)

Async Python Cube.js client

Features:

- Cube.js API client that makes async requests
- Rich objects for building queries with measures, dimensions, etc.

Table of Contents:

- [Installation](#installation)
- [Development](#development)

## Installation

cubejsclientasync requires Python 3.6 or above.

```bash
pip install cubejsclientasync
```

## Development

To develop cubejsclientasync, install dependencies and enable the pre-commit hook:

```bash
pip install pre-commit poetry
poetry install
pre-commit install
```

To run tests:

```bash
poetry shell
pytest
```