code-loader 1.0.112__py3-none-any.whl → 1.0.112.dev1__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 code-loader might be problematic. Click here for more details.
- code_loader/contract/datasetclasses.py +4 -4
- code_loader/inner_leap_binder/leapbinder_decorators.py +55 -13
- code_loader/leaploader.py +6 -6
- code_loader/leaploaderbase.py +1 -1
- code_loader/utils.py +4 -6
- code_loader-1.0.112.dev1.dist-info/LICENSE +21 -0
- {code_loader-1.0.112.dist-info → code_loader-1.0.112.dev1.dist-info}/METADATA +3 -3
- {code_loader-1.0.112.dist-info → code_loader-1.0.112.dev1.dist-info}/RECORD +10 -9
- {code_loader-1.0.112.dist-info → code_loader-1.0.112.dev1.dist-info}/WHEEL +1 -1
- /code_loader-1.0.112.dist-info/LICENSE → /LICENSE +0 -0
|
@@ -40,12 +40,10 @@ class PreprocessResponse:
|
|
|
40
40
|
sample_id_type: Optional[Union[Type[str], Type[int]]] = None
|
|
41
41
|
sample_ids_to_instance_mappings: Optional[Dict[str, List[str]]] = None # in use only for element instance
|
|
42
42
|
instance_to_sample_ids_mappings: Optional[Dict[str, str]] = None # in use only for element instance
|
|
43
|
-
instance_ids_to_names: Optional[Dict[str, str]] = None # in use only for element instance
|
|
44
43
|
|
|
45
44
|
def __post_init__(self) -> None:
|
|
46
45
|
assert self.sample_ids_to_instance_mappings is None, f"Keep sample_ids_to_instance_mappings None when initializing PreprocessResponse"
|
|
47
46
|
assert self.instance_to_sample_ids_mappings is None, f"Keep instance_to_sample_ids_mappings None when initializing PreprocessResponse"
|
|
48
|
-
assert self.instance_ids_to_names is None, f"Keep instance_ids_to_names None when initializing PreprocessResponse"
|
|
49
47
|
|
|
50
48
|
if self.length is not None and self.sample_ids is None:
|
|
51
49
|
self.sample_ids = [i for i in range(self.length)]
|
|
@@ -73,7 +71,9 @@ class ElementInstance:
|
|
|
73
71
|
mask: npt.NDArray[np.float32]
|
|
74
72
|
|
|
75
73
|
SectionCallableInterface = Callable[[Union[int, str], PreprocessResponse], npt.NDArray[np.float32]]
|
|
76
|
-
InstanceCallableInterface = Callable[[Union[int, str], PreprocessResponse],
|
|
74
|
+
InstanceCallableInterface = Callable[[Union[int, str], PreprocessResponse, Union[int, str]], ElementInstance]
|
|
75
|
+
InstanceLengthCallableInterface = Callable[[Union[int, str], PreprocessResponse], int]
|
|
76
|
+
|
|
77
77
|
|
|
78
78
|
MetadataSectionCallableInterface = Union[
|
|
79
79
|
Callable[[Union[int, str], PreprocessResponse], int],
|
|
@@ -251,5 +251,5 @@ class DatasetSample:
|
|
|
251
251
|
metadata_is_none: Dict[str, bool]
|
|
252
252
|
index: Union[int, str]
|
|
253
253
|
state: DataStateEnum
|
|
254
|
-
instance_masks: Optional[Dict[str,
|
|
254
|
+
instance_masks: Optional[Dict[str, ElementInstance]] = None
|
|
255
255
|
|
|
@@ -8,7 +8,8 @@ import numpy.typing as npt
|
|
|
8
8
|
from code_loader.contract.datasetclasses import CustomCallableInterfaceMultiArgs, \
|
|
9
9
|
CustomMultipleReturnCallableInterfaceMultiArgs, ConfusionMatrixCallableInterfaceMultiArgs, CustomCallableInterface, \
|
|
10
10
|
VisualizerCallableInterface, MetadataSectionCallableInterface, PreprocessResponse, SectionCallableInterface, \
|
|
11
|
-
ConfusionMatrixElement, SamplePreprocessResponse, PredictionTypeHandler, InstanceCallableInterface, ElementInstance
|
|
11
|
+
ConfusionMatrixElement, SamplePreprocessResponse, PredictionTypeHandler, InstanceCallableInterface, ElementInstance, \
|
|
12
|
+
InstanceLengthCallableInterface
|
|
12
13
|
from code_loader.contract.enums import MetricDirection, LeapDataType, DatasetMetadataType
|
|
13
14
|
from code_loader import leap_binder
|
|
14
15
|
from code_loader.contract.mapping import NodeMapping, NodeMappingType, NodeConnection
|
|
@@ -480,29 +481,24 @@ def tensorleap_preprocess():
|
|
|
480
481
|
|
|
481
482
|
|
|
482
483
|
def tensorleap_element_instance_preprocess(
|
|
483
|
-
|
|
484
|
+
instance_length_encoder: InstanceLengthCallableInterface):
|
|
484
485
|
def decorating_function(user_function: Callable[[], List[PreprocessResponse]]):
|
|
485
486
|
def user_function_instance() -> List[PreprocessResponse]:
|
|
486
487
|
result = user_function()
|
|
487
488
|
for preprocess_response in result:
|
|
488
489
|
sample_ids_to_instance_mappings = {}
|
|
489
490
|
instance_to_sample_ids_mappings = {}
|
|
490
|
-
instance_ids_to_names = {}
|
|
491
491
|
all_sample_ids = preprocess_response.sample_ids.copy()
|
|
492
492
|
for sample_id in preprocess_response.sample_ids:
|
|
493
|
-
|
|
494
|
-
instances_ids = [f'{sample_id}_{instance_id}' for instance_id in range(
|
|
493
|
+
instances_length = instance_length_encoder(sample_id, preprocess_response)
|
|
494
|
+
instances_ids = [f'{sample_id}_{instance_id}' for instance_id in range(instances_length)]
|
|
495
495
|
sample_ids_to_instance_mappings[sample_id] = instances_ids
|
|
496
496
|
instance_to_sample_ids_mappings[sample_id] = sample_id
|
|
497
|
-
|
|
498
|
-
instance_ids_to_names[sample_id] = 'none'
|
|
499
|
-
for instance_id, instance_name in zip(instances_ids, instance_names):
|
|
497
|
+
for instance_id in instances_ids:
|
|
500
498
|
instance_to_sample_ids_mappings[instance_id] = sample_id
|
|
501
|
-
instance_ids_to_names[instance_id] = instance_name
|
|
502
499
|
all_sample_ids.extend(instances_ids)
|
|
503
500
|
preprocess_response.sample_ids_to_instance_mappings = sample_ids_to_instance_mappings
|
|
504
501
|
preprocess_response.instance_to_sample_ids_mappings = instance_to_sample_ids_mappings
|
|
505
|
-
preprocess_response.instance_ids_to_names = instance_ids_to_names
|
|
506
502
|
preprocess_response.sample_ids = all_sample_ids
|
|
507
503
|
return result
|
|
508
504
|
|
|
@@ -571,7 +567,7 @@ def tensorleap_unlabeled_preprocess():
|
|
|
571
567
|
|
|
572
568
|
def tensorleap_instances_masks_encoder(name: str):
|
|
573
569
|
def decorating_function(user_function: InstanceCallableInterface):
|
|
574
|
-
def _validate_input_args(sample_id: str, preprocess_response: PreprocessResponse):
|
|
570
|
+
def _validate_input_args(sample_id: str, preprocess_response: PreprocessResponse, instance_id: str):
|
|
575
571
|
assert isinstance(sample_id, str), \
|
|
576
572
|
(f'tensorleap_instances_masks_encoder validation failed: '
|
|
577
573
|
f'Argument sample_id should be str. Got {type(sample_id)}.')
|
|
@@ -588,6 +584,53 @@ def tensorleap_instances_masks_encoder(name: str):
|
|
|
588
584
|
(f'tensorleap_instances_masks_encoder validation failed: '
|
|
589
585
|
f'Unsupported return type. Should be a numpy array. Got {type(result)}.')
|
|
590
586
|
|
|
587
|
+
def inner_without_validate(sample_id, preprocess_response, instance_id):
|
|
588
|
+
global _called_from_inside_tl_decorator
|
|
589
|
+
_called_from_inside_tl_decorator += 1
|
|
590
|
+
|
|
591
|
+
try:
|
|
592
|
+
result = user_function(sample_id, preprocess_response, instance_id)
|
|
593
|
+
finally:
|
|
594
|
+
_called_from_inside_tl_decorator -= 1
|
|
595
|
+
|
|
596
|
+
return result
|
|
597
|
+
|
|
598
|
+
leap_binder.set_instance_masks(inner_without_validate, name)
|
|
599
|
+
|
|
600
|
+
def inner(sample_id, preprocess_response, instance_id):
|
|
601
|
+
if os.environ.get(mapping_runtime_mode_env_var_mame):
|
|
602
|
+
return None
|
|
603
|
+
|
|
604
|
+
_validate_input_args(sample_id, preprocess_response, instance_id)
|
|
605
|
+
|
|
606
|
+
result = inner_without_validate(sample_id, preprocess_response, instance_id)
|
|
607
|
+
|
|
608
|
+
_validate_result(result)
|
|
609
|
+
return result
|
|
610
|
+
|
|
611
|
+
return inner
|
|
612
|
+
|
|
613
|
+
return decorating_function
|
|
614
|
+
|
|
615
|
+
def tensorleap_instances_length_encoder(name: str):
|
|
616
|
+
def decorating_function(user_function: InstanceLengthCallableInterface):
|
|
617
|
+
def _validate_input_args(sample_id: str, preprocess_response: PreprocessResponse):
|
|
618
|
+
assert isinstance(sample_id, str), \
|
|
619
|
+
(f'tensorleap_instances_length_encoder validation failed: '
|
|
620
|
+
f'Argument sample_id should be str. Got {type(sample_id)}.')
|
|
621
|
+
assert isinstance(preprocess_response, PreprocessResponse), \
|
|
622
|
+
(f'tensorleap_instances_length_encoder validation failed: '
|
|
623
|
+
f'Argument preprocess_response should be a PreprocessResponse. Got {type(preprocess_response)}.')
|
|
624
|
+
assert type(sample_id) == preprocess_response.sample_id_type, \
|
|
625
|
+
(f'tensorleap_instances_length_encoder validation failed: '
|
|
626
|
+
f'Argument sample_id should be as the same type as defined in the preprocess response '
|
|
627
|
+
f'{preprocess_response.sample_id_type}. Got {type(sample_id)}.')
|
|
628
|
+
|
|
629
|
+
def _validate_result(result):
|
|
630
|
+
assert isinstance(result, int), \
|
|
631
|
+
(f'tensorleap_instances_length_encoder validation failed: '
|
|
632
|
+
f'Unsupported return type. Should be a int. Got {type(result)}.')
|
|
633
|
+
|
|
591
634
|
def inner_without_validate(sample_id, preprocess_response):
|
|
592
635
|
global _called_from_inside_tl_decorator
|
|
593
636
|
_called_from_inside_tl_decorator += 1
|
|
@@ -599,7 +642,7 @@ def tensorleap_instances_masks_encoder(name: str):
|
|
|
599
642
|
|
|
600
643
|
return result
|
|
601
644
|
|
|
602
|
-
leap_binder.set_instance_masks(inner_without_validate, name)
|
|
645
|
+
# leap_binder.set_instance_masks(inner_without_validate, name). # TODO: do i need this?
|
|
603
646
|
|
|
604
647
|
def inner(sample_id, preprocess_response):
|
|
605
648
|
if os.environ.get(mapping_runtime_mode_env_var_mame):
|
|
@@ -616,7 +659,6 @@ def tensorleap_instances_masks_encoder(name: str):
|
|
|
616
659
|
|
|
617
660
|
return decorating_function
|
|
618
661
|
|
|
619
|
-
|
|
620
662
|
def tensorleap_input_encoder(name: str, channel_dim=-1, model_input_index=None):
|
|
621
663
|
def decorating_function(user_function: SectionCallableInterface):
|
|
622
664
|
for input_handler in leap_binder.setup_container.inputs:
|
code_loader/leaploader.py
CHANGED
|
@@ -160,7 +160,7 @@ class LeapLoader(LeapLoaderBase):
|
|
|
160
160
|
state=state)
|
|
161
161
|
return sample
|
|
162
162
|
|
|
163
|
-
def get_sample_with_masks(self, state: DataStateEnum, sample_id: Union[int, str]) -> DatasetSample:
|
|
163
|
+
def get_sample_with_masks(self, state: DataStateEnum, sample_id: Union[int, str], instance_id: Union[int, str]) -> DatasetSample:
|
|
164
164
|
self.exec_script()
|
|
165
165
|
preprocess_result = self._preprocess_result()
|
|
166
166
|
if state == DataStateEnum.unlabeled and sample_id not in preprocess_result[state].sample_ids:
|
|
@@ -173,7 +173,7 @@ class LeapLoader(LeapLoaderBase):
|
|
|
173
173
|
metadata_is_none=metadata_is_none,
|
|
174
174
|
index=sample_id,
|
|
175
175
|
state=state,
|
|
176
|
-
instance_masks=self._get_instances_masks(state, sample_id))
|
|
176
|
+
instance_masks=self._get_instances_masks(state, sample_id, instance_id))
|
|
177
177
|
return sample
|
|
178
178
|
|
|
179
179
|
def check_dataset(self) -> DatasetIntegParseResult:
|
|
@@ -466,12 +466,12 @@ class LeapLoader(LeapLoaderBase):
|
|
|
466
466
|
def _get_inputs(self, state: DataStateEnum, sample_id: Union[int, str]) -> Dict[str, npt.NDArray[np.float32]]:
|
|
467
467
|
return self._get_dataset_handlers(global_leap_binder.setup_container.inputs, state, sample_id)
|
|
468
468
|
|
|
469
|
-
def _get_instances_masks(self, state: DataStateEnum, sample_id: Union[int, str]) -> Dict[str,
|
|
469
|
+
def _get_instances_masks(self, state: DataStateEnum, sample_id: Union[int, str], instance_id: Union[int, str]) -> Dict[str, ElementInstance]:
|
|
470
470
|
preprocess_result = self._preprocess_result()
|
|
471
471
|
preprocess_state = preprocess_result[state]
|
|
472
472
|
result_agg = {}
|
|
473
473
|
for handler in global_leap_binder.setup_container.instance_masks:
|
|
474
|
-
handler_result = handler.function(sample_id, preprocess_state)
|
|
474
|
+
handler_result = handler.function(sample_id, preprocess_state, instance_id)
|
|
475
475
|
handler_name = handler.name
|
|
476
476
|
result_agg[handler_name] = handler_result
|
|
477
477
|
return result_agg
|
|
@@ -545,7 +545,7 @@ class LeapLoader(LeapLoaderBase):
|
|
|
545
545
|
|
|
546
546
|
return id_type
|
|
547
547
|
|
|
548
|
-
def get_instances_data(self, state: DataStateEnum) -> Tuple[Dict[str, List[str]], Dict[str, str]
|
|
548
|
+
def get_instances_data(self, state: DataStateEnum) -> Tuple[Dict[str, List[str]], Dict[str, str]]:
|
|
549
549
|
"""
|
|
550
550
|
This Method get the data state and returns two dictionaries that holds the mapping of the sample ids to their
|
|
551
551
|
instances and the other way around and the sample ids array.
|
|
@@ -558,4 +558,4 @@ class LeapLoader(LeapLoaderBase):
|
|
|
558
558
|
"""
|
|
559
559
|
preprocess_result = self._preprocess_result()
|
|
560
560
|
preprocess_state = preprocess_result[state]
|
|
561
|
-
return preprocess_state.sample_ids_to_instance_mappings, preprocess_state.instance_to_sample_ids_mappings
|
|
561
|
+
return preprocess_state.sample_ids_to_instance_mappings, preprocess_state.instance_to_sample_ids_mappings
|
code_loader/leaploaderbase.py
CHANGED
|
@@ -65,7 +65,7 @@ class LeapLoaderBase:
|
|
|
65
65
|
pass
|
|
66
66
|
|
|
67
67
|
@abstractmethod
|
|
68
|
-
def get_sample_with_masks(self, state: DataStateEnum, sample_id: Union[int, str]) -> DatasetSample:
|
|
68
|
+
def get_sample_with_masks(self, state: DataStateEnum, sample_id: Union[int, str], instance_id: Union[int, str]) -> DatasetSample:
|
|
69
69
|
pass
|
|
70
70
|
|
|
71
71
|
@abstractmethod
|
code_loader/utils.py
CHANGED
|
@@ -18,12 +18,10 @@ def to_numpy_return_wrapper(encoder_function: SectionCallableInterface) -> Secti
|
|
|
18
18
|
|
|
19
19
|
return numpy_encoder_function
|
|
20
20
|
|
|
21
|
-
def to_numpy_return_masks_wrapper(encoder_function: InstanceCallableInterface) ->
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
result =
|
|
25
|
-
for res in result:
|
|
26
|
-
res.mask = np.array(res.mask)
|
|
21
|
+
def to_numpy_return_masks_wrapper(encoder_function: InstanceCallableInterface) -> InstanceCallableInterface:
|
|
22
|
+
def numpy_encoder_function(idx: Union[int, str], samples: PreprocessResponse, element_idx: Union[int, str]) -> ElementInstance:
|
|
23
|
+
result = encoder_function(idx, samples, element_idx)
|
|
24
|
+
result.mask = np.array(result.mask)
|
|
27
25
|
return result
|
|
28
26
|
return numpy_encoder_function
|
|
29
27
|
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 TensorLeap
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: code-loader
|
|
3
|
-
Version: 1.0.112
|
|
3
|
+
Version: 1.0.112.dev1
|
|
4
4
|
Summary:
|
|
5
|
+
Home-page: https://github.com/tensorleap/code-loader
|
|
5
6
|
License: MIT
|
|
6
7
|
Author: dorhar
|
|
7
8
|
Author-email: doron.harnoy@tensorleap.ai
|
|
@@ -17,7 +18,6 @@ Requires-Dist: numpy (>=1.22.3,<2.0.0)
|
|
|
17
18
|
Requires-Dist: psutil (>=5.9.5,<6.0.0)
|
|
18
19
|
Requires-Dist: pyyaml (>=6.0.2,<7.0.0)
|
|
19
20
|
Requires-Dist: requests (>=2.32.3,<3.0.0)
|
|
20
|
-
Project-URL: Homepage, https://github.com/tensorleap/code-loader
|
|
21
21
|
Project-URL: Repository, https://github.com/tensorleap/code-loader
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
+
LICENSE,sha256=qIwWjdspQeSMTtnFZBC8MuT-95L02FPvzRUdWFxrwJY,1067
|
|
1
2
|
code_loader/__init__.py,sha256=6MMWr0ObOU7hkqQKgOqp4Zp3I28L7joGC9iCbQYtAJg,241
|
|
2
3
|
code_loader/contract/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
code_loader/contract/datasetclasses.py,sha256=
|
|
4
|
+
code_loader/contract/datasetclasses.py,sha256=mEd_HDaFQV6Ybaa4L7ih2PP0gys0e076P5cXejiZrYU,8714
|
|
4
5
|
code_loader/contract/enums.py,sha256=GEFkvUMXnCNt-GOoz7NJ9ecQZ2PPDettJNOsxsiM0wk,1622
|
|
5
6
|
code_loader/contract/exceptions.py,sha256=jWqu5i7t-0IG0jGRsKF4DjJdrsdpJjIYpUkN1F4RiyQ,51
|
|
6
7
|
code_loader/contract/mapping.py,sha256=e11h_sprwOyE32PcqgRq9JvyahQrPzwqgkhmbQLKLQY,1165
|
|
@@ -20,16 +21,16 @@ code_loader/experiment_api/utils.py,sha256=XZHtxge12TS4H4-8PjV3sKuhp8Ud6ojAiIzTZ
|
|
|
20
21
|
code_loader/experiment_api/workingspace_config_utils.py,sha256=DLzXQCg4dgTV_YgaSbeTVzq-2ja_SQw4zi7LXwKL9cY,990
|
|
21
22
|
code_loader/inner_leap_binder/__init__.py,sha256=koOlJyMNYzGbEsoIbXathSmQ-L38N_pEXH_HvL7beXU,99
|
|
22
23
|
code_loader/inner_leap_binder/leapbinder.py,sha256=0iHVHxC2NjfH7F0vQFVGy1e0llgKEyUHUHh3DdtqL70,32602
|
|
23
|
-
code_loader/inner_leap_binder/leapbinder_decorators.py,sha256=
|
|
24
|
-
code_loader/leaploader.py,sha256=
|
|
25
|
-
code_loader/leaploaderbase.py,sha256=
|
|
24
|
+
code_loader/inner_leap_binder/leapbinder_decorators.py,sha256=cYbSA3aetZnaFMyKa_xJXHZS07j_d48O4tdr6C6N1vo,42867
|
|
25
|
+
code_loader/leaploader.py,sha256=nIrUtK7n8is1MiaHS5T6io3P64brc1we5IxI4EPRqSs,29387
|
|
26
|
+
code_loader/leaploaderbase.py,sha256=s1jIzgRXRvZLHxIB8zreOJNv-Qh5LgoZQkLFXTpAidE,4526
|
|
26
27
|
code_loader/plot_functions/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
28
|
code_loader/plot_functions/plot_functions.py,sha256=xg6Gi4myTN9crq6JtyrhYI38HLXjPVJcbnI7CIy8f7w,14625
|
|
28
29
|
code_loader/plot_functions/visualize.py,sha256=gsBAYYkwMh7jIpJeDMPS8G4CW-pxwx6LznoQIvi4vpo,657
|
|
29
|
-
code_loader/utils.py,sha256=
|
|
30
|
+
code_loader/utils.py,sha256=jyKC7GSW92DEd0l1jxnNnYqTK8QzULjzlUV61Id17tc,2660
|
|
30
31
|
code_loader/visualizers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
32
|
code_loader/visualizers/default_visualizers.py,sha256=onRnLE_TXfgLN4o52hQIOOhUcFexGlqJ3xSpQDVLuZM,2604
|
|
32
|
-
code_loader-1.0.112.dist-info/LICENSE,sha256=qIwWjdspQeSMTtnFZBC8MuT-95L02FPvzRUdWFxrwJY,1067
|
|
33
|
-
code_loader-1.0.112.dist-info/METADATA,sha256=
|
|
34
|
-
code_loader-1.0.112.dist-info/WHEEL,sha256=
|
|
35
|
-
code_loader-1.0.112.dist-info/RECORD,,
|
|
33
|
+
code_loader-1.0.112.dev1.dist-info/LICENSE,sha256=qIwWjdspQeSMTtnFZBC8MuT-95L02FPvzRUdWFxrwJY,1067
|
|
34
|
+
code_loader-1.0.112.dev1.dist-info/METADATA,sha256=8LRZ8EwP5U_QbLwJCZ1NMDY8Rqfk_8rT4KTmgrixMZI,906
|
|
35
|
+
code_loader-1.0.112.dev1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
36
|
+
code_loader-1.0.112.dev1.dist-info/RECORD,,
|
|
File without changes
|