https://github.com/edmondchuc/rdflib-tinydb
https://github.com/edmondchuc/rdflib-tinydb
rdflib tinydb
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/edmondchuc/rdflib-tinydb
- Owner: edmondchuc
- Created: 2021-12-14T04:34:25.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-12-14T04:36:46.000Z (over 3 years ago)
- Last Synced: 2024-12-28T05:42:27.276Z (6 months ago)
- Topics: rdflib, tinydb
- Language: Python
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RDFLib-TinyDB
TinyDB-backed RDFLib store.
> :warning: **This project is no longer viable. TinyDB's performance is too slow as it does not support indices.**
### Features:
- Naive implementation (not context-aware, graph-aware or formula-aware).
- `Store.add()` and `Store.triples()` works.
- `Store.__len__()` works.
- `Store.query()` works.## Running tests
```bash
pytest
```With coverage:
```bash
pytest --cov=rdflib_tinydb --cov-report html
```