DiaModality 0.1.3__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.
@@ -0,0 +1,77 @@
1
+ #!/usr/bin/env python
2
+ import csv
3
+
4
+
5
+ class LoadCsv:
6
+ '''
7
+ The input CSV file must be comma delimited and contains only numeric
8
+ data or empty cells. Each empty cell concideres as None.
9
+ '''
10
+
11
+ def __init__(self, file_path: str) -> None:
12
+ self.file_path = file_path
13
+
14
+ def ParseCsv(self, *args) -> list:
15
+ '''
16
+ The input is a list of integers.
17
+ Output is list of matrices.
18
+ Each int represent each output matrix and defines
19
+ how many columns to include into matrix.
20
+ Eg: input: (3, 2)
21
+ output: list of two matrices, first one with 1-3 cols
22
+ and second one with 4-5 cols from the original csv.
23
+ '''
24
+
25
+ with open(self.file_path, 'r') as file:
26
+ reader = csv.reader(file)
27
+ table = tuple(reader)
28
+ output = []
29
+
30
+ for i, arg in enumerate(args):
31
+
32
+ output.append([])
33
+ start = sum(args) - sum(args[i:])
34
+ stop = start + arg
35
+
36
+ for row in table:
37
+ output[i].append(
38
+ tuple(
39
+ float(cell) if cell
40
+ else None
41
+ for cell in row[start:stop]
42
+ )
43
+ )
44
+
45
+ return output
46
+
47
+ def ParseCsv_old(self) -> list:
48
+ '''
49
+ Ugly legacy method specific for modality plot only
50
+ to be removed if new one works well
51
+ '''
52
+ with open(self.file_path, 'r') as file:
53
+ reader = csv.reader(file)
54
+ data, binarization = [], []
55
+ for row in reader:
56
+ data.append(
57
+ tuple(
58
+ float(cell)
59
+ if cell
60
+ else 0
61
+ for cell in row[:3]
62
+ )
63
+ )
64
+ binarization.append(
65
+ tuple(
66
+ True
67
+ if cell
68
+ else False
69
+ for cell in row[3:6]
70
+ )
71
+ )
72
+
73
+ return data, binarization
74
+
75
+
76
+ if __name__ == '__main__':
77
+ print('\nThis script can be used as an imported module only\n')
@@ -0,0 +1,344 @@
1
+ #!/usr/bin/env python
2
+ import matplotlib.pyplot as plt
3
+ # import matplotlib.colors as mcolors
4
+ import matplotlib.gridspec as gridspec
5
+ import numpy as np
6
+
7
+ # Only use for plot layout adjustment
8
+ DEBUG = False
9
+
10
+
11
+ class __Figure():
12
+ '''
13
+ Super class of all future plots
14
+ '''
15
+
16
+ def __init__(
17
+ self,
18
+ marker='',
19
+ linestyle='-',
20
+ linewidth=0.5,
21
+ alpha=0.8,
22
+ figsize=(10, 10),
23
+ title='',
24
+ ) -> None:
25
+
26
+ self.marker = marker
27
+ self.linestyle = linestyle
28
+ self.linewidth = linewidth
29
+ self.alpha = alpha
30
+ self.figsize = figsize
31
+ self.title = title
32
+ self.debug_flag = DEBUG
33
+
34
+ # Prepare figure:
35
+ self.fig = plt.figure(figsize=self.figsize)
36
+ self._make_layout()
37
+
38
+ def _make_layout(self) -> None:
39
+ # Create figure
40
+ plt.subplots_adjust(wspace=0.0, hspace=0.0)
41
+ plt.tight_layout()
42
+ plt.suptitle(self.title)
43
+
44
+
45
+ class __Output():
46
+ '''
47
+ Output options mixin
48
+ '''
49
+
50
+ def show(self):
51
+ plt.show()
52
+
53
+ def save(self,
54
+ filename,
55
+ type='png',
56
+ transparent=False):
57
+ plt.savefig('{}.{}'.format(filename, type), transparent=transparent)
58
+
59
+
60
+ class ModalityPlot(__Figure, __Output):
61
+ '''
62
+ Input fotmat:
63
+
64
+ data: list of points, each point should be represented as a
65
+ list or touple containing three floats, one per modality.
66
+
67
+ '''
68
+
69
+ def __init__(
70
+ self,
71
+ data: list,
72
+ binarization: list,
73
+ modalities=('Set A', 'Set B', 'Set C'),
74
+ angles=[90, 210, 330],
75
+ labels=True,
76
+ scalecircle=1, # Scale circle radius
77
+ scalecircle_linestyle=':',
78
+ scalecircle_linewidth=1,
79
+ marker='', # vector endpoints marker
80
+ linestyle='-',
81
+ linewidth=0.5,
82
+ alpha=0.8,
83
+ same_scale=False, # Draw all the subplots in the same scale
84
+ full_center=True, # Draw all vectors in the central subplot, else draw trimodal vectors only
85
+ whole_sum=True, # Calculate all three modality vectors despite binarization
86
+ figsize=(10, 10),
87
+ title='',
88
+ colors=(
89
+ 'tab:green', # Set 1 color
90
+ 'navy', # Set 2 color
91
+ 'tab:red', # Set 3 color
92
+ '#1E88E5', # Sets 1 & 2 intersection color
93
+ '#FF9933', # Sets 1 & 3 intersection color
94
+ '#9900FF', # Sets 2 & 3 intersection color
95
+ 'black', # All sets intersection color
96
+ ),
97
+ normalization_func='sigmoid',
98
+ ) -> None:
99
+
100
+ self.data, self.binarization = self.__format_input(data, binarization)
101
+ self.modalities = modalities
102
+ self.angles = np.deg2rad(angles)
103
+ self.labels = labels
104
+ self.scalecircle = scalecircle
105
+ self.scalecircle_linestyle = scalecircle_linestyle
106
+ self.scalecircle_linewidth = scalecircle_linewidth
107
+ self.same_scale = same_scale
108
+ self.full_center = full_center
109
+ self.whole_sum = whole_sum
110
+ self.colors = colors
111
+ self.normalization_func = normalization_func
112
+ self.modality_patterns = (
113
+ (True, False, False),
114
+ (False, True, False),
115
+ (False, False, True),
116
+ (True, True, False),
117
+ (True, False, True),
118
+ (False, True, True),
119
+ (True, True, True),
120
+ )
121
+ self.modalities_array = (
122
+ (self.modalities[0], None, None),
123
+ (None, self.modalities[1], None),
124
+ (None, None, self.modalities[2]),
125
+ (self.modalities[0], self.modalities[1], None),
126
+ (self.modalities[0], None, self.modalities[2]),
127
+ (None, self.modalities[1], self.modalities[2]),
128
+ (None, None, None),
129
+ )
130
+
131
+ super().__init__(
132
+ marker,
133
+ linestyle,
134
+ linewidth,
135
+ alpha,
136
+ figsize,
137
+ title,
138
+ )
139
+
140
+ # check input:
141
+ assert self.data.any(), 'data array must not be empty'
142
+ assert self.binarization.any(), 'binarization array must not be empty'
143
+ assert len(self.data) == len(
144
+ self.binarization), 'data and binarization arrays must have exact length'
145
+ assert len(self.data[0]) == len(self.binarization[0]
146
+ ) == 3, 'data and binarization arrays must have three columns each'
147
+
148
+ def __format_input(self, input_data, input_bin) -> list:
149
+ '''
150
+ Data formatting:
151
+ Each column represents one modality. Empty cells are counted as 0.
152
+ Each row containing at least one value that will be represented as a point.
153
+ '''
154
+
155
+ output_data = np.array(input_data, dtype=object)
156
+ # Replace empty cells with zeros
157
+ output_data[output_data is None] = 0
158
+ output_data = output_data.astype(np.float32)
159
+
160
+ # Replace zeros with False and other numbers with True
161
+ output_bin = np.array(input_bin, dtype=np.bool_)
162
+
163
+ return output_data, output_bin
164
+
165
+ def __normalization(self, input) -> list:
166
+ '''
167
+ Define function to normalize coordinates
168
+ to values in range of 0 to 1 for HSV color model.
169
+ input: np.array
170
+ '''
171
+
172
+ match self.normalization_func:
173
+
174
+ case 'linear':
175
+ def func(x): return (x - np.min(input)) / \
176
+ (np.max(input) - np.min(input))
177
+
178
+ case 'sigmoid':
179
+ def func(x): return 1 / (1 + np.exp(-x))
180
+
181
+ # case 'log':
182
+ # log_input = np.log1p(input)
183
+ # func = lambda x: (x - np.min(log_input)) / (np.max(log_input) - np.min(log_input))
184
+
185
+ return [func(x) for x in input]
186
+
187
+ def __vector_addition(self, data, binarization) -> list:
188
+
189
+ resultants = np.array((), dtype=np.float32)
190
+
191
+ for points, bins in zip(data, binarization):
192
+
193
+ # ignore empty lines
194
+ if not all(x == 0 for x in points):
195
+
196
+ # Calculate resultant vector
197
+ resultants = np.append(
198
+ resultants,
199
+ np.sum(
200
+ [points[i] * np.exp(1j * self.angles[i])
201
+ if bins[i] or self.whole_sum
202
+ else 0
203
+ for i in range(len(points))
204
+ ]
205
+ )
206
+ )
207
+ else:
208
+ resultants = np.append(resultants, (0))
209
+
210
+ return resultants
211
+
212
+ def __find_match_modality(self, sample, list) -> int:
213
+ for i, item in enumerate(list):
214
+ if np.array_equal(item, sample):
215
+ return i
216
+ return 0
217
+
218
+ def __draw_scalecircle(self, ax) -> None:
219
+
220
+ # Plot the single-unit circle
221
+ r = self.scalecircle
222
+ theta = np.linspace(0, 2*np.pi, 100)
223
+ ax.plot(theta, [r]*len(theta), color='black',
224
+ linestyle=self.scalecircle_linestyle, linewidth=self.scalecircle_linewidth, zorder=10)
225
+
226
+ def __initiate_subplot(self, ax) -> None:
227
+
228
+ # Set custom design
229
+ ax.set_yticklabels([])
230
+ ax.set_xticks(self.angles if self.labels else [])
231
+ ax.grid(False)
232
+ ax.spines['polar'].set_visible(
233
+ False) if not self.debug_flag else ax.spines['polar'].set_visible(True)
234
+ ax.patch.set_facecolor('none')
235
+
236
+ # Draw coordinate grid on the top of figure
237
+ # to make easier subplots alignment on devtime
238
+
239
+ def __debug_grid(self, fig, y, x) -> None:
240
+
241
+ for i in range(1, y*x+1):
242
+
243
+ ax = fig.add_subplot(y, x, i)
244
+
245
+ # Set the facecolor of the axes
246
+ ax.patch.set_facecolor('none')
247
+ ax.set_xticks([])
248
+ ax.set_yticks([])
249
+
250
+ for spine in ax.spines.values():
251
+ spine.set_edgecolor('black')
252
+
253
+ def __draw_subplot(self, ax, resultants, modality_pattern, modalities) -> None:
254
+
255
+ # for future sets calculation
256
+ sets_counter = [0] * 8
257
+
258
+ # Color measurement in HSV format (temporarry abandoned future)
259
+ # hue_array = self.__normalization(np.angle(resultants))
260
+ # sat_array = np.ones_like(hue_array)
261
+ # val_array = self.__normalization(np.abs(resultants))
262
+ # color = mcolors.hsv_to_rgb((hue, sat, val))
263
+
264
+ for resultant, data_row, bin_row in zip(resultants, self.data, self.binarization):
265
+
266
+ if (resultant
267
+ and np.array_equal(bin_row, modality_pattern)
268
+ or (self.full_center
269
+ and modality_pattern == (True, True, True)
270
+ and (tuple(bin_row) not in self.modality_patterns[:3]
271
+ or self.whole_sum
272
+ )
273
+ )
274
+ ):
275
+
276
+ # defining the modality of responce to apply color and z-order
277
+ modality_pattern_number = self.__find_match_modality(
278
+ bin_row, self.modality_patterns)
279
+ sets_counter[modality_pattern_number] += 1
280
+ color = self.colors[modality_pattern_number]
281
+ zorder = modality_pattern_number
282
+
283
+ ax.plot(
284
+ [0, np.angle(resultant)],
285
+ [0, np.abs(resultant)],
286
+ zorder=zorder,
287
+ marker=self.marker,
288
+ linestyle=self.linestyle,
289
+ linewidth=self.linewidth,
290
+ color=color,
291
+ alpha=self.alpha
292
+ )
293
+ if self.labels:
294
+ ax.set_xticklabels(modalities)
295
+
296
+ if self.scalecircle:
297
+ self.__draw_scalecircle(ax)
298
+
299
+ def _make_layout(self) -> None:
300
+ '''
301
+ Make figure layout,
302
+ starting point of plotting
303
+ '''
304
+
305
+ # Defining layout
306
+ gs = gridspec.GridSpec(20, 20, figure=self.fig)
307
+ # fig.add_subplot(gs[1:11, 5:15], polar=True)
308
+ ax1 = self.fig.add_subplot(gs[7:17, 1:11], polar=True)
309
+ # fig.add_subplot(gs[7:17, 1:11], polar=True)
310
+ ax2 = self.fig.add_subplot(gs[1:11, 5:15], polar=True)
311
+ ax3 = self.fig.add_subplot(gs[7:17, 9:19], polar=True)
312
+ ax12 = self.fig.add_subplot(gs[4:14, 3:13], polar=True)
313
+ # fig.add_subplot(gs[4:14, 7:17], polar=True)
314
+ ax13 = self.fig.add_subplot(gs[7:17, 5:15], polar=True)
315
+ # fig.add_subplot(gs[7:17, 5:15], polar=True)
316
+ ax23 = self.fig.add_subplot(gs[4:14, 7:17], polar=True)
317
+ ax0 = self.fig.add_subplot(gs[5:15, 5:15], polar=True)
318
+ subplots = (ax1, ax2, ax3, ax12, ax13, ax23, ax0)
319
+
320
+ # calculate resultants
321
+ resultants = self.__vector_addition(self.data, self.binarization)
322
+
323
+ # plot each subplot
324
+ for ax, modality_pattern, modalities in zip(subplots, self.modality_patterns, self.modalities_array):
325
+ self.__initiate_subplot(ax)
326
+ self.__draw_subplot(ax, resultants, modality_pattern, modalities)
327
+
328
+ if self.same_scale:
329
+ rlim = ax0.get_xlim()
330
+ for ax in subplots:
331
+ ax.set_rlim(rlim)
332
+
333
+ # Draw coordinate grid on the top of figure
334
+ # to make easier subplots alignment on devtime
335
+ if self.debug_flag:
336
+ self.__debug_grid(self.fig, 20, 20)
337
+
338
+ plt.subplots_adjust(wspace=0.0, hspace=0.0)
339
+ plt.tight_layout()
340
+ plt.suptitle(self.title)
341
+
342
+
343
+ if __name__ == '__main__':
344
+ print('\nThis script can be used as an imported module only\n')
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env python
2
+ from ._version import __version__
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env python
2
+
3
+ if __name__ == '__main__':
4
+ print('\nThis script can be executed as an imported module only\n')
@@ -0,0 +1 @@
1
+ __version__ = "0.1.3"
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 konung-yaropolk
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.
@@ -0,0 +1,150 @@
1
+ Metadata-Version: 2.1
2
+ Name: DiaModality
3
+ Version: 0.1.3
4
+ Summary: Tool to plot modality vector diagrams
5
+ Author-email: konung-yaropolk <yaropolk1995@gmail.com>
6
+ License: MIT License
7
+
8
+ Copyright (c) 2024 konung-yaropolk
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
27
+ Project-URL: Homepage, https://github.com/konung-yaropolk/DiaModality
28
+ Project-URL: Issues, https://github.com/konung-yaropolk/DiaModality/issues
29
+ Keywords: Visualization,Plotting,Matplotlib
30
+ Classifier: Programming Language :: Python :: 3
31
+ Classifier: License :: OSI Approved :: MIT License
32
+ Classifier: Operating System :: OS Independent
33
+ Classifier: Development Status :: 4 - Beta
34
+ Classifier: Intended Audience :: Science/Research
35
+ Classifier: Natural Language :: English
36
+ Classifier: Topic :: Scientific/Engineering :: Visualization
37
+ Requires-Python: >=3.10
38
+ Description-Content-Type: text/markdown
39
+ License-File: LICENSE
40
+ Requires-Dist: numpy
41
+ Requires-Dist: matplotlib
42
+
43
+ # DiaModality - The Modality Diagram
44
+
45
+ Simple tool to plot vector modality diagram
46
+
47
+ ### To install package run the command:
48
+ ```bash
49
+ pip install diamodality
50
+ ```
51
+
52
+
53
+ ### How to use:
54
+ See the /demo directory on Git repo or
55
+ create and run the following two files:
56
+
57
+ ---
58
+ ``generate_sample_data.py``:
59
+ ```python
60
+ import csv
61
+ import random
62
+ import os
63
+
64
+ num_rows = 1500
65
+ output_file = 'modality_data.csv'
66
+
67
+ # locate working directory
68
+ script_dir = os.path.dirname(os.path.realpath(__file__))
69
+ file_path = os.path.join(script_dir, output_file)
70
+
71
+ # Open a new CSV file to write the data
72
+ with open(file_path, mode='w', newline='') as file:
73
+ writer = csv.writer(file)
74
+
75
+ # Generate the data
76
+ signal_treshold = 1.5
77
+ for _ in range(num_rows):
78
+
79
+ # generate data columns:
80
+ col1 = random.uniform(0, 2.7)
81
+ col2 = random.uniform(0, 3.3)
82
+ col3 = random.uniform(0, 7.3)
83
+
84
+ # generate binarization columns:
85
+ col4 = 1 if col1 > signal_treshold else ''
86
+ col5 = 1 if col2 > signal_treshold else ''
87
+ col6 = 1 if col3 > signal_treshold else ''
88
+
89
+ writer.writerow([col1, col2, col3, col4, col5, col6])
90
+
91
+ ```
92
+
93
+
94
+ ---
95
+ ``plot_sample_data.py``:
96
+ ```python
97
+ import DiaModality.CsvParser as csv
98
+ import DiaModality.ModalityPlot as plt
99
+ import os
100
+
101
+ # input file:
102
+ files = 'modality_data.csv'
103
+
104
+ # Get full path of input files
105
+ script_dir = os.path.dirname(os.path.realpath(__file__))
106
+ file_path = os.path.join(script_dir, file)
107
+
108
+ # Parse data from csv file
109
+ new_csv = csv.LoadCsv(file_path)
110
+ data, binarization = new_csv.ParseCsv(3, 3)
111
+
112
+ # Make figure:
113
+ plot = plt.ModalityPlot(
114
+ data,
115
+ binarization,
116
+ modalities=['Set 1', 'Set 2', 'Set 3'],
117
+ angles=[210, 90, 330],
118
+ labels=False,
119
+ scalecircle=0.5, # Scale circle radius
120
+ scalecircle_linestyle=':',
121
+ scalecircle_linewidth=0.75,
122
+ marker='', # vector endpoints marker
123
+ linestyle='-',
124
+ linewidth=0.5,
125
+ alpha=0.5,
126
+ same_scale=False, # Draw all the subplots in the same scale
127
+ full_center=True, # Draw all vectors in the central subplot, else draw trimodal vectors only
128
+ whole_sum=True, # Calculate all three modality vectors despite binarization
129
+ figsize=(10, 10),
130
+ title='Modality Diagram Example',
131
+ colors=(
132
+ 'tab:green', # Set 1 color
133
+ 'navy', # Set 2 color
134
+ 'tab:red', # Set 3 color
135
+ '#1E88E5', # Sets 1 & 2 intersection color
136
+ '#FF9933', # Sets 1 & 3 intersection color
137
+ '#9900FF', # Sets 2 & 3 intersection color
138
+ 'black', # All sets intersection color
139
+ ),
140
+ )
141
+
142
+ plot.save(file_path, type='png', transparent=False)
143
+ plot.show()
144
+ ```
145
+
146
+ Source page:
147
+ https://github.com/konung-yaropolk/DiaModality
148
+
149
+
150
+ ![modality_data csv](https://github.com/user-attachments/assets/eb77b4d7-281f-45b0-a5ce-4c2442fc9a75)
@@ -0,0 +1,10 @@
1
+ DiaModality/CsvParser.py,sha256=7Obsb4N1rKbh61lW14HbQ1I2wgp0WWDZBCLn3okGkKE,2388
2
+ DiaModality/ModalityPlot.py,sha256=_YSwSFvBB6KzeweZWsz7LwCeQBVaecKMeUgWA7dHMO4,12043
3
+ DiaModality/__init__.py,sha256=dG2uQjZL0lNFRoeQL_znkCWNDwVqzLdUc6NwTAMLOV4,58
4
+ DiaModality/__main__.py,sha256=fuCOdcGCsOis-_tmgYEsOEINKOfDOf2wrHfX7DBiRRY,126
5
+ DiaModality/_version.py,sha256=LPNaKUFe5S0lxcbXP4IcviKz02tUsjRUDAJch2OV7IE,23
6
+ DiaModality-0.1.3.dist-info/LICENSE,sha256=xj_-qiB7H9szm74jCUlWpSLmHozF0k-FWpACE-AaouI,1091
7
+ DiaModality-0.1.3.dist-info/METADATA,sha256=LF3LkMnEMfHfAxijlT-29V6eVquMGuoDzYmdpukvXko,5063
8
+ DiaModality-0.1.3.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
9
+ DiaModality-0.1.3.dist-info/top_level.txt,sha256=3fHizr4llS7jJzpwH6BSm-9nHZy2nsYrtcVcPt3yW5M,12
10
+ DiaModality-0.1.3.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (75.3.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ DiaModality