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

https://github.com/brimdata/superdb-python

A Python module for interacting with a persistent SuperDB database
https://github.com/brimdata/superdb-python

Last synced: 15 days ago
JSON representation

A Python module for interacting with a persistent SuperDB database

Awesome Lists containing this project

README

          

# `superdb` Python Package

Visit for installation
instructions and example usage.

## Running the tests

Create and activate a virtual environment, install the package with its test
dependencies, and start a local SuperDB service:

```
python3 -m venv .venv
source .venv/bin/activate
pip3 install -e '.[test]'
super db -db $(mktemp -d) serve
```

Then in another shell (with the virtual environment activated):

```
source .venv/bin/activate
pytest
```

Tests are skipped automatically if the SuperDB service is not reachable.