pilot.linkstec 0.0.29__py3-none-any.whl → 0.0.31__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.
- pilot/job/impl/base_job.py +13 -1
- {pilot_linkstec-0.0.29.dist-info → pilot_linkstec-0.0.31.dist-info}/METADATA +1 -1
- {pilot_linkstec-0.0.29.dist-info → pilot_linkstec-0.0.31.dist-info}/RECORD +6 -6
- {pilot_linkstec-0.0.29.dist-info → pilot_linkstec-0.0.31.dist-info}/WHEEL +0 -0
- {pilot_linkstec-0.0.29.dist-info → pilot_linkstec-0.0.31.dist-info}/licenses/LICENSE +0 -0
- {pilot_linkstec-0.0.29.dist-info → pilot_linkstec-0.0.31.dist-info}/top_level.txt +0 -0
pilot/job/impl/base_job.py
CHANGED
|
@@ -343,4 +343,16 @@ class BaseJob(JobInterface):
|
|
|
343
343
|
"""
|
|
344
344
|
pass
|
|
345
345
|
|
|
346
|
-
|
|
346
|
+
def generate_basedir_file(self, ext):
|
|
347
|
+
dir_path = os.path.dirname(self.file_path)
|
|
348
|
+
base_name = os.path.basename(dir_path)
|
|
349
|
+
file_name = base_name + '.' + ext.lstrip('.')
|
|
350
|
+
tempfile_path = os.path.join(dir_path, file_name)
|
|
351
|
+
# 空のファイルを作成
|
|
352
|
+
with open(tempfile_path, 'w', encoding='utf-8') as f:
|
|
353
|
+
pass # 何も書き込まない(空ファイル作成)
|
|
354
|
+
return tempfile_path
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
def get_file_name_without_extension(self, file_name):
|
|
358
|
+
return os.path.splitext(os.path.basename(file_name))[0]
|
|
@@ -14,7 +14,7 @@ pilot/generater/vertexai.py,sha256=SOFfl0qCuLhfjeIoSU7Tk-I7ZB6ZrOyGme2rXDYCGzk,2
|
|
|
14
14
|
pilot/job/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
pilot/job/job_interface.py,sha256=EKtuj0IcdolP494aAgTtctgamyQIoFXVwRORwOQck7A,124
|
|
16
16
|
pilot/job/impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
pilot/job/impl/base_job.py,sha256=
|
|
17
|
+
pilot/job/impl/base_job.py,sha256=PHoTx8FJOeKiqbjTp8QQ38oaikKRnCQ_JwU5p23Z1Gw,14641
|
|
18
18
|
pilot/logging/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
pilot/logging/logger.py,sha256=TF7eGr3w8GK5v4sf71lDt97uVoBtCgqrZuCdbMmeQBU,1815
|
|
20
20
|
pilot/processor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -28,8 +28,8 @@ pilot/unit/impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
28
28
|
pilot/unit/impl/base_unit.py,sha256=LsFPpL28aSNv5rsZhfKv6CWhAw1XR4n-A6FOn2RBrZo,1272
|
|
29
29
|
pilot/util/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
30
|
pilot/util/files.py,sha256=v9uzfzo3Aq4xgnUIASEZeBJoA2nD9Qz_EA3P-FwzGFQ,1896
|
|
31
|
-
pilot_linkstec-0.0.
|
|
32
|
-
pilot_linkstec-0.0.
|
|
33
|
-
pilot_linkstec-0.0.
|
|
34
|
-
pilot_linkstec-0.0.
|
|
35
|
-
pilot_linkstec-0.0.
|
|
31
|
+
pilot_linkstec-0.0.31.dist-info/licenses/LICENSE,sha256=6kbiFSfobTZ7beWiKnHpN902HgBx-Jzgcme0SvKqhKY,1091
|
|
32
|
+
pilot_linkstec-0.0.31.dist-info/METADATA,sha256=7C_FcVY38kg7LC4_5tx1iVOk12HwwHc-3EF9sHY6sy8,679
|
|
33
|
+
pilot_linkstec-0.0.31.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
34
|
+
pilot_linkstec-0.0.31.dist-info/top_level.txt,sha256=BijnVJdXnIPxxx3s60M848seL4Z12gNUPod6KPJxK9c,6
|
|
35
|
+
pilot_linkstec-0.0.31.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|