aboutsummaryrefslogtreecommitdiffstats
path: root/bsie/utils/namespaces.py
diff options
context:
space:
mode:
authorMatthias Baumgartner <dev@igsor.net>2023-02-08 19:23:46 +0100
committerMatthias Baumgartner <dev@igsor.net>2023-02-08 19:23:46 +0100
commita281d6b3a75a7d4a97e673c285ee430a327482ed (patch)
treecbdecc56c7fca6a7a4cd03a1b974d5c60ee3cd7b /bsie/utils/namespaces.py
parent482235a8229261fa905f73ce167982bca57ab3e6 (diff)
downloadbsie-a281d6b3a75a7d4a97e673c285ee430a327482ed.tar.gz
bsie-a281d6b3a75a7d4a97e673c285ee430a327482ed.tar.bz2
bsie-a281d6b3a75a7d4a97e673c285ee430a327482ed.zip
preview extractor
Diffstat (limited to 'bsie/utils/namespaces.py')
-rw-r--r--bsie/utils/namespaces.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bsie/utils/namespaces.py b/bsie/utils/namespaces.py
index 393b436..0af8ece 100644
--- a/bsie/utils/namespaces.py
+++ b/bsie/utils/namespaces.py
@@ -12,16 +12,18 @@ from . import bsfs as _bsfs
# constants
bse = _bsfs.Namespace('http://bsfs.ai/schema/Entity')
+bsf = _bsfs.Namespace('http://ie.bsfs.ai/schema/Feature')
bsfs = _bsfs.Namespace('http://bsfs.ai/schema', fsep='/')
bsm = _bsfs.Namespace('http://bsfs.ai/schema/Meta')
+bsp = _bsfs.Namespace('http://bsfs.ai/schema/Preview')
xsd = _bsfs.Namespace('http://www.w3.org/2001/XMLSchema')
-bsf = _bsfs.Namespace('http://ie.bsfs.ai/schema/Feature')
# export
__all__: typing.Sequence[str] = (
'bse',
'bsfs',
'bsm',
+ 'bsp',
'xsd',
)