datatailr 0.1.38__py3-none-any.whl → 0.1.40__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.
Potentially problematic release.
This version of datatailr might be problematic. Click here for more details.
- datatailr/sbin/datatailr_run.py +2 -0
- datatailr/scheduler/arguments_cache.py +4 -1
- {datatailr-0.1.38.dist-info → datatailr-0.1.40.dist-info}/METADATA +1 -1
- {datatailr-0.1.38.dist-info → datatailr-0.1.40.dist-info}/RECORD +8 -8
- {datatailr-0.1.38.dist-info → datatailr-0.1.40.dist-info}/WHEEL +0 -0
- {datatailr-0.1.38.dist-info → datatailr-0.1.40.dist-info}/entry_points.txt +0 -0
- {datatailr-0.1.38.dist-info → datatailr-0.1.40.dist-info}/licenses/LICENSE +0 -0
- {datatailr-0.1.38.dist-info → datatailr-0.1.40.dist-info}/top_level.txt +0 -0
datatailr/sbin/datatailr_run.py
CHANGED
|
@@ -38,8 +38,10 @@ import sys
|
|
|
38
38
|
from typing import Tuple
|
|
39
39
|
from datatailr.logging import DatatailrLogger
|
|
40
40
|
from datatailr.utils import is_dt_installed
|
|
41
|
+
from datatailr import __version__
|
|
41
42
|
|
|
42
43
|
logger = DatatailrLogger(os.path.abspath(__file__)).get_logger()
|
|
44
|
+
logger.info(f"Datatailr version: {__version__}")
|
|
43
45
|
|
|
44
46
|
if not is_dt_installed():
|
|
45
47
|
logger.error("Datatailr is not installed.")
|
|
@@ -161,5 +161,8 @@ class ArgumentsCache:
|
|
|
161
161
|
:param path: Path in the Blob storage where the blob is stored.
|
|
162
162
|
"""
|
|
163
163
|
path = path.replace("/tmp/", "")
|
|
164
|
-
|
|
164
|
+
try:
|
|
165
|
+
data = __BLOB_STORAGE__.get_blob(path)
|
|
166
|
+
except RuntimeError as e:
|
|
167
|
+
raise RuntimeError(f"Failed to retrieve blob from path {path}: {str(e)}")
|
|
165
168
|
return json.loads(data)
|
|
@@ -12,22 +12,22 @@ datatailr/version.py,sha256=N9K8ZxlwFFSz8XSgbgaTWZY4k2J0JKfj698nZ_O2pIU,536
|
|
|
12
12
|
datatailr/wrapper.py,sha256=K9ZD76cWey_ikA6C5sKejwRaYBDln4QMg-RcoRGiuFc,7991
|
|
13
13
|
datatailr/build/__init__.py,sha256=_dA7b4L6wsaAFaSxUoYSJ1oaRqDHDMR20kqoCocSOss,487
|
|
14
14
|
datatailr/build/image.py,sha256=YC8ML-l-sj6TcIBY-DCx_vaeI_7SmL9fPFhHnuxzRh0,5509
|
|
15
|
-
datatailr/sbin/datatailr_run.py,sha256=
|
|
15
|
+
datatailr/sbin/datatailr_run.py,sha256=qBntRCsQefUQhm5CDKcMnhwWntj8ICSbo1ycrzEfhZc,6950
|
|
16
16
|
datatailr/sbin/datatailr_run_app.py,sha256=AOkutzv4DeKfWZs-ZBciAMKnK4A05SfkVf1ZJnSSFwA,1231
|
|
17
17
|
datatailr/sbin/datatailr_run_batch.py,sha256=UWnp96j_G66R_Cape7Bb-rbK6UBLF7Y5_mTlWyGJAVQ,1818
|
|
18
18
|
datatailr/sbin/datatailr_run_excel.py,sha256=_uke80tRw07PsGSqAhbYrfw43KZX-v3dHXq_HsSmnV0,1171
|
|
19
19
|
datatailr/sbin/datatailr_run_service.py,sha256=R8eNLN2SGnMtyfLy3vq9isUHr3dRzeBqESTquNK9Iho,1156
|
|
20
20
|
datatailr/scheduler/__init__.py,sha256=qydHYVtEP6SUWd2CQ6FRdTdRWNz3SbYPJy4FK_wOvMk,1772
|
|
21
|
-
datatailr/scheduler/arguments_cache.py,sha256=
|
|
21
|
+
datatailr/scheduler/arguments_cache.py,sha256=zPBAX_hojbcuruDin1RTxnjdvtJ4EBhc1sjUb0QALCA,6151
|
|
22
22
|
datatailr/scheduler/base.py,sha256=z4y2bvY3darDzxt-t69RI1WiKCKoYxX-Jg71iL9q1Fk,14760
|
|
23
23
|
datatailr/scheduler/batch.py,sha256=2bWcWwcoQjfoJCKIFgoc4L_aCq8nR2v34ri6EMsy0LE,16947
|
|
24
24
|
datatailr/scheduler/batch_decorator.py,sha256=LqL1bsupWLn-YEQUvFJYae7R3ogrL5-VodyiiScrkRw,5806
|
|
25
25
|
datatailr/scheduler/constants.py,sha256=5WWTsfwZ_BA8gVDOTa2AQX9DJ0NzfaWgtY3vrODS2-8,606
|
|
26
26
|
datatailr/scheduler/schedule.py,sha256=0XJJen2nL1xplRs0Xbjwgq3T-0bFCOrJzkSALdio998,3741
|
|
27
27
|
datatailr/scheduler/utils.py,sha256=up6oR2iwe6G52LkvgfO394xchXgCYNjOMGRQW3e8PQk,1082
|
|
28
|
-
datatailr-0.1.
|
|
29
|
-
datatailr-0.1.
|
|
30
|
-
datatailr-0.1.
|
|
31
|
-
datatailr-0.1.
|
|
32
|
-
datatailr-0.1.
|
|
33
|
-
datatailr-0.1.
|
|
28
|
+
datatailr-0.1.40.dist-info/licenses/LICENSE,sha256=ikKP4_O-UD_b8FuNdKmbzTb6odd0JX085ZW_FAPN3VI,1066
|
|
29
|
+
datatailr-0.1.40.dist-info/METADATA,sha256=eA6nn9MBty-u48qjlBGGTZXBS8_VzSBGEvAjt9snwHY,5146
|
|
30
|
+
datatailr-0.1.40.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
31
|
+
datatailr-0.1.40.dist-info/entry_points.txt,sha256=YqXfk2At-olW4PUSRkqvy_O3Mbv7uTKCCPuAAiz3Qbg,312
|
|
32
|
+
datatailr-0.1.40.dist-info/top_level.txt,sha256=75gntW0X_SKpqxLL6hAPipvpk28GAhJBvoyqN_HohWU,10
|
|
33
|
+
datatailr-0.1.40.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|