Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 5 additions & 6 deletions tripper/triplestore.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
"""A module encapsulating different triplestores using the strategy
design pattern.

See
https://raw.githubusercontent.com/EMMC-ASBL/tripper/master/README.md
for an introduction and a table over available backends.
For a list over available backends, see
https://emmc-asbl.github.io/tripper/latest/#available-backends

This module has no dependencies outside the standard library, but the
triplestore backends may have.
This module has no dependencies outside the standard library, but
the triplestore backends may have.

For developers: The usage of `s`, `p`, and `o` represent the different
parts of an RDF Triple: subject, predicate, and object.
Expand Down Expand Up @@ -50,14 +49,14 @@
from tripper.utils import bnode_iri, en, function_id, infer_iri, split_iri

if TYPE_CHECKING: # pragma: no cover
from collections.abc import Mapping
from typing import (
Any,
Callable,
Dict,
Generator,
Iterable,
List,
Mapping,
Optional,
Tuple,
Union,
Expand Down