-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
42 lines (38 loc) · 867 Bytes
/
__init__.py
File metadata and controls
42 lines (38 loc) · 867 Bytes
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
"""A library for using a JSON Lines (JSONL) file as a lightweight database."""
from importlib.metadata import version
from ._exceptions import (
ConflictError,
FileError,
InvalidKeyError,
JSONLTError,
LimitError,
LockError,
ParseError,
TransactionError,
)
from ._header import Header
from ._json import JSONArray, JSONObject, JSONPrimitive, JSONValue
from ._keys import Key, KeySpecifier
from ._table import Table
from ._transaction import Transaction
__version__ = version("jsonlt-python")
__all__ = [
"ConflictError",
"FileError",
"Header",
"InvalidKeyError",
"JSONArray",
"JSONLTError",
"JSONObject",
"JSONPrimitive",
"JSONValue",
"Key",
"KeySpecifier",
"LimitError",
"LockError",
"ParseError",
"Table",
"Transaction",
"TransactionError",
"__version__",
]