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
- Host: GitHub
- URL: https://github.com/brimdata/superdb-python
- Owner: brimdata
- License: bsd-3-clause
- Created: 2026-06-03T22:16:33.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-06-03T22:27:15.000Z (about 1 month ago)
- Last Synced: 2026-06-04T00:12:24.403Z (about 1 month ago)
- Size: 3.91 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.