aboutsummaryrefslogtreecommitdiffstats
path: root/tagit/utils/bsfs.py
blob: ab8baa523d27d7c709bb1d501607adc30aef9b3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
"""BSFS bridge, provides BSFS bindings for tagit.

Part of the tagit module.
A copy of the license is provided with the project.
Author: Matthias Baumgartner, 2022
"""
# imports
import typing

# bsfs imports
from bsfs import schema, Open
from bsfs.namespace import Namespace
from bsfs.query import ast, matcher
from bsfs.utils import URI, uuid

# exports
__all__: typing.Sequence[str] = (
    'Namespace',
    'Open',
    'URI',
    'ast',
    'schema',
    'uuid'
    )

## EOF ##