1
0

Docstring
Some checks failed
Test Python / Test (push) Failing after 22s

This commit is contained in:
Jon Michael Aanes 2024-07-07 00:16:23 +02:00
parent f796fcfaa2
commit 6bf0151641
Signed by: Jmaa
SSH Key Fingerprint: SHA256:Ab0GfHGCblESJx7JRE4fj4bFy/KRpeLhi41y4pF3sNA
2 changed files with 19 additions and 10 deletions

View File

@ -1,3 +0,0 @@
# Datagraph
Utility for working with scheme+ld and other data-graph and semantic web formats.

View File

@ -1,12 +1,24 @@
"""Datagraph Library.
# Package
Utility for working with scheme+ld and other data-graph and semantic web formats.
"""
__all__ = [
'__version__',
'format',
'parse',
'schemeld',
'wikidata_ext',
]
import sys
import os.path
import sys, os
sys.path.append(os.path.join(os.path.dirname(__file__)))
from _version import __version__
from ._version import __version__
import format
import parse
import schemeld
import wikidata_ext
from . import format
from . import parse
from . import schemeld
from . import wikidata_ext