lumera 0.4.19__py3-none-any.whl → 0.4.20__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
lumera/sdk.py
CHANGED
|
@@ -4,6 +4,9 @@ from typing import Any, Iterable, Mapping, MutableMapping, Sequence, TypedDict
|
|
|
4
4
|
|
|
5
5
|
import requests as _requests
|
|
6
6
|
|
|
7
|
+
from ._utils import (
|
|
8
|
+
API_BASE as _API_BASE,
|
|
9
|
+
)
|
|
7
10
|
from ._utils import (
|
|
8
11
|
LEGACY_MOUNT_ROOT as _LEGACY_MOUNT_ROOT,
|
|
9
12
|
)
|
|
@@ -39,6 +42,9 @@ from ._utils import (
|
|
|
39
42
|
from ._utils import (
|
|
40
43
|
get_google_access_token as _get_google_access_token,
|
|
41
44
|
)
|
|
45
|
+
from ._utils import (
|
|
46
|
+
get_lumera_token as _get_lumera_token,
|
|
47
|
+
)
|
|
42
48
|
from ._utils import (
|
|
43
49
|
log_timed as _log_timed,
|
|
44
50
|
)
|
|
@@ -54,6 +60,7 @@ from ._utils import (
|
|
|
54
60
|
|
|
55
61
|
# Expose shared symbols for backwards-compatible imports.
|
|
56
62
|
requests = _requests
|
|
63
|
+
API_BASE = _API_BASE
|
|
57
64
|
MOUNT_ROOT = _MOUNT_ROOT
|
|
58
65
|
LEGACY_MOUNT_ROOT = _LEGACY_MOUNT_ROOT
|
|
59
66
|
TOKEN_ENV = _TOKEN_ENV
|
|
@@ -61,6 +68,7 @@ LumeraAPIError = _LumeraAPIError
|
|
|
61
68
|
RecordNotUniqueError = _RecordNotUniqueError
|
|
62
69
|
get_access_token = _get_access_token
|
|
63
70
|
get_google_access_token = _get_google_access_token
|
|
71
|
+
get_lumera_token = _get_lumera_token
|
|
64
72
|
log_timed = _log_timed
|
|
65
73
|
open_file = _open_file
|
|
66
74
|
resolve_path = _resolve_path
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
lumera/__init__.py,sha256=wiSDU8oEsyLWPx4aKjrOdRuG9xRCU2hx-2tl-0usQCI,1412
|
|
2
|
+
lumera/_utils.py,sha256=QyAaphxXGEK8XNPO0ghKLgTOYhAxcF_j3W0T8StzjxA,23610
|
|
3
|
+
lumera/google.py,sha256=3IVNL1HaOtsTmunl0alnGFuUAkzQQRyCEA3CKjlPqO0,10183
|
|
4
|
+
lumera/sdk.py,sha256=ULWrBjRggaXtesmeBxq_eXM5a9hQMhZ9_f6-sOj4gKs,21827
|
|
5
|
+
lumera-0.4.20.dist-info/METADATA,sha256=-oZpdGCUinqh6dvdK803pLbiL1a_e4SLk75wou7utH8,1576
|
|
6
|
+
lumera-0.4.20.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
+
lumera-0.4.20.dist-info/top_level.txt,sha256=HgfK4XQkpMTnM2E5iWM4kB711FnYqUY9dglzib3pWlE,7
|
|
8
|
+
lumera-0.4.20.dist-info/RECORD,,
|
lumera-0.4.19.dist-info/RECORD
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
lumera/__init__.py,sha256=wiSDU8oEsyLWPx4aKjrOdRuG9xRCU2hx-2tl-0usQCI,1412
|
|
2
|
-
lumera/_utils.py,sha256=QyAaphxXGEK8XNPO0ghKLgTOYhAxcF_j3W0T8StzjxA,23610
|
|
3
|
-
lumera/google.py,sha256=3IVNL1HaOtsTmunl0alnGFuUAkzQQRyCEA3CKjlPqO0,10183
|
|
4
|
-
lumera/sdk.py,sha256=rheDwUjT9Dcy6t7aAbHE8EiIbRe5dJnMGclZViLFMPU,21651
|
|
5
|
-
lumera-0.4.19.dist-info/METADATA,sha256=vLezVVjgWKrkHK8LLOVchFAm9fYGq9j4EPEKccwN1V0,1576
|
|
6
|
-
lumera-0.4.19.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
-
lumera-0.4.19.dist-info/top_level.txt,sha256=HgfK4XQkpMTnM2E5iWM4kB711FnYqUY9dglzib3pWlE,7
|
|
8
|
-
lumera-0.4.19.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|