not1mm 24.12.8.2__py3-none-any.whl → 24.12.9__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.
- not1mm/lib/version.py +1 -1
- not1mm/plugins/jidx_cw.py +13 -1
- not1mm/plugins/jidx_ph.py +13 -1
- not1mm/plugins/lz-dx.py +13 -1
- not1mm/plugins/naqp_cw.py +13 -1
- not1mm/plugins/naqp_rtty.py +17 -5
- not1mm/plugins/naqp_ssb.py +13 -1
- not1mm/plugins/raem.py +12 -1
- not1mm/plugins/ref_cw.py +20 -5
- not1mm/plugins/ref_ssb.py +20 -5
- not1mm/plugins/stew_perry_topband.py +12 -1
- not1mm/plugins/winter_field_day.py +14 -2
- {not1mm-24.12.8.2.dist-info → not1mm-24.12.9.dist-info}/METADATA +2 -1
- {not1mm-24.12.8.2.dist-info → not1mm-24.12.9.dist-info}/RECORD +18 -18
- {not1mm-24.12.8.2.dist-info → not1mm-24.12.9.dist-info}/LICENSE +0 -0
- {not1mm-24.12.8.2.dist-info → not1mm-24.12.9.dist-info}/WHEEL +0 -0
- {not1mm-24.12.8.2.dist-info → not1mm-24.12.9.dist-info}/entry_points.txt +0 -0
- {not1mm-24.12.8.2.dist-info → not1mm-24.12.9.dist-info}/top_level.txt +0 -0
not1mm/lib/version.py
CHANGED
not1mm/plugins/jidx_cw.py
CHANGED
@@ -38,7 +38,7 @@ from pathlib import Path
|
|
38
38
|
|
39
39
|
from PyQt6 import QtWidgets
|
40
40
|
|
41
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
41
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
42
42
|
from not1mm.lib.version import __version__
|
43
43
|
|
44
44
|
logger = logging.getLogger(__name__)
|
@@ -488,3 +488,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
488
488
|
self.save_contact()
|
489
489
|
continue
|
490
490
|
self.process_function_key(button)
|
491
|
+
|
492
|
+
|
493
|
+
def get_mults(self):
|
494
|
+
"""Get mults for RTC XML"""
|
495
|
+
mults = {}
|
496
|
+
mults["country"] = show_mults(self)
|
497
|
+
return mults
|
498
|
+
|
499
|
+
|
500
|
+
def just_points(self):
|
501
|
+
"""Get points for RTC XML"""
|
502
|
+
return get_points(self)
|
not1mm/plugins/jidx_ph.py
CHANGED
@@ -9,7 +9,7 @@ from pathlib import Path
|
|
9
9
|
|
10
10
|
from PyQt6 import QtWidgets
|
11
11
|
|
12
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
12
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
13
13
|
from not1mm.lib.version import __version__
|
14
14
|
|
15
15
|
logger = logging.getLogger(__name__)
|
@@ -457,3 +457,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
457
457
|
self.save_contact()
|
458
458
|
continue
|
459
459
|
self.process_function_key(button)
|
460
|
+
|
461
|
+
|
462
|
+
def get_mults(self):
|
463
|
+
"""Get mults for RTC XML"""
|
464
|
+
mults = {}
|
465
|
+
mults["country"] = show_mults(self)
|
466
|
+
return mults
|
467
|
+
|
468
|
+
|
469
|
+
def just_points(self):
|
470
|
+
"""Get points for RTC XML"""
|
471
|
+
return get_points(self)
|
not1mm/plugins/lz-dx.py
CHANGED
@@ -40,7 +40,7 @@ from pathlib import Path
|
|
40
40
|
|
41
41
|
from PyQt6 import QtWidgets
|
42
42
|
|
43
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
43
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
44
44
|
|
45
45
|
from not1mm.lib.version import __version__
|
46
46
|
|
@@ -624,3 +624,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
624
624
|
self.save_contact()
|
625
625
|
continue
|
626
626
|
self.process_function_key(button)
|
627
|
+
|
628
|
+
|
629
|
+
def get_mults(self):
|
630
|
+
"""Get mults for RTC XML"""
|
631
|
+
mults = {}
|
632
|
+
mults["state"] = show_mults(self)
|
633
|
+
return mults
|
634
|
+
|
635
|
+
|
636
|
+
def just_points(self):
|
637
|
+
"""Get points for RTC XML"""
|
638
|
+
return get_points(self)
|
not1mm/plugins/naqp_cw.py
CHANGED
@@ -40,7 +40,7 @@ from pathlib import Path
|
|
40
40
|
|
41
41
|
from PyQt6 import QtWidgets
|
42
42
|
|
43
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
43
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
44
44
|
from not1mm.lib.version import __version__
|
45
45
|
|
46
46
|
logger = logging.getLogger(__name__)
|
@@ -559,3 +559,15 @@ def check_call_history(self):
|
|
559
559
|
self.other_1.setText(f"{result.get('Name', '')}")
|
560
560
|
if self.other_2.text() == "":
|
561
561
|
self.other_2.setText(f"{result.get('State', '')}")
|
562
|
+
|
563
|
+
|
564
|
+
def get_mults(self):
|
565
|
+
"""Get mults for RTC XML"""
|
566
|
+
mults = {}
|
567
|
+
mults["state"] = show_mults(self)
|
568
|
+
return mults
|
569
|
+
|
570
|
+
|
571
|
+
def just_points(self):
|
572
|
+
"""Get points for RTC XML"""
|
573
|
+
return get_points(self)
|
not1mm/plugins/naqp_rtty.py
CHANGED
@@ -20,11 +20,11 @@
|
|
20
20
|
# Exchange: NA: Name + (state/DC/province/country)
|
21
21
|
# non-NA: Name
|
22
22
|
# Work stations: Once per band
|
23
|
-
# QSO Points:
|
24
|
-
#
|
23
|
+
# QSO Points: NA station: 1 point per QSO
|
24
|
+
# non-NA station: 1 point per QSO with an NA station
|
25
25
|
# Multipliers: Each US state and DC (including KH6/KL7) once per band
|
26
|
-
#
|
27
|
-
#
|
26
|
+
# Each VE province/territory once per band
|
27
|
+
# Each North American country (except W/VE) once per band
|
28
28
|
# Score Calculation: Total score = total QSO points x total mults
|
29
29
|
# E-mail logs to: (none)
|
30
30
|
# Upload log at: http://www.ncjweb.com/naqplogsubmit/
|
@@ -41,7 +41,7 @@ from pathlib import Path
|
|
41
41
|
from PyQt6 import QtWidgets
|
42
42
|
|
43
43
|
from not1mm.lib.ham_utility import get_logged_band
|
44
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
44
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
45
45
|
from not1mm.lib.version import __version__
|
46
46
|
|
47
47
|
logger = logging.getLogger(__name__)
|
@@ -666,3 +666,15 @@ def check_call_history(self):
|
|
666
666
|
self.other_1.setText(f"{result.get('Name', '')}")
|
667
667
|
if self.other_2.text() == "":
|
668
668
|
self.other_2.setText(f"{result.get('State', '')}")
|
669
|
+
|
670
|
+
|
671
|
+
def get_mults(self):
|
672
|
+
"""Get mults for RTC XML"""
|
673
|
+
mults = {}
|
674
|
+
mults["state"] = show_mults(self)
|
675
|
+
return mults
|
676
|
+
|
677
|
+
|
678
|
+
def just_points(self):
|
679
|
+
"""Get points for RTC XML"""
|
680
|
+
return get_points(self)
|
not1mm/plugins/naqp_ssb.py
CHANGED
@@ -10,7 +10,7 @@ from pathlib import Path
|
|
10
10
|
|
11
11
|
from PyQt6 import QtWidgets
|
12
12
|
|
13
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
13
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
14
14
|
from not1mm.lib.version import __version__
|
15
15
|
|
16
16
|
logger = logging.getLogger(__name__)
|
@@ -529,3 +529,15 @@ def check_call_history(self):
|
|
529
529
|
self.other_1.setText(f"{result.get('Name', '')}")
|
530
530
|
if self.other_2.text() == "":
|
531
531
|
self.other_2.setText(f"{result.get('State', '')}")
|
532
|
+
|
533
|
+
|
534
|
+
def get_mults(self):
|
535
|
+
"""Get mults for RTC XML"""
|
536
|
+
mults = {}
|
537
|
+
mults["state"] = show_mults(self)
|
538
|
+
return mults
|
539
|
+
|
540
|
+
|
541
|
+
def just_points(self):
|
542
|
+
"""Get points for RTC XML"""
|
543
|
+
return get_points(self)
|
not1mm/plugins/raem.py
CHANGED
@@ -50,7 +50,7 @@ from pathlib import Path
|
|
50
50
|
|
51
51
|
from PyQt6 import QtWidgets
|
52
52
|
|
53
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
53
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
54
54
|
from not1mm.lib.version import __version__
|
55
55
|
|
56
56
|
logger = logging.getLogger(__name__)
|
@@ -603,3 +603,14 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
603
603
|
self.save_contact()
|
604
604
|
continue
|
605
605
|
self.process_function_key(button)
|
606
|
+
|
607
|
+
|
608
|
+
def get_mults(self):
|
609
|
+
"""Get mults for RTC XML"""
|
610
|
+
mults = {}
|
611
|
+
return mults
|
612
|
+
|
613
|
+
|
614
|
+
def just_points(self):
|
615
|
+
"""Get points for RTC XML"""
|
616
|
+
return get_points(self)
|
not1mm/plugins/ref_cw.py
CHANGED
@@ -47,7 +47,7 @@ from pathlib import Path
|
|
47
47
|
|
48
48
|
from PyQt6 import QtWidgets
|
49
49
|
|
50
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
50
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
51
51
|
|
52
52
|
from not1mm.lib.version import __version__
|
53
53
|
|
@@ -242,11 +242,14 @@ def points(self):
|
|
242
242
|
return 0
|
243
243
|
|
244
244
|
|
245
|
-
def show_mults(self):
|
245
|
+
def show_mults(self, rtc=None):
|
246
246
|
"""Return display string for mults"""
|
247
|
-
|
248
|
-
|
249
|
-
|
247
|
+
one = int(self.database.fetch_mult_count(1).get("count", 0))
|
248
|
+
two = int(self.database.fetch_mult_count(2).get("count", 0))
|
249
|
+
if rtc is not None:
|
250
|
+
return (two, one)
|
251
|
+
|
252
|
+
return one + two
|
250
253
|
|
251
254
|
|
252
255
|
def show_qso(self):
|
@@ -616,3 +619,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
616
619
|
self.save_contact()
|
617
620
|
continue
|
618
621
|
self.process_function_key(button)
|
622
|
+
|
623
|
+
|
624
|
+
def get_mults(self):
|
625
|
+
"""Get mults for RTC XML"""
|
626
|
+
mults = {}
|
627
|
+
mults["country"], mults["state"] = show_mults(self, rtc=True)
|
628
|
+
return mults
|
629
|
+
|
630
|
+
|
631
|
+
def just_points(self):
|
632
|
+
"""Get points for RTC XML"""
|
633
|
+
return get_points(self)
|
not1mm/plugins/ref_ssb.py
CHANGED
@@ -62,7 +62,7 @@ from pathlib import Path
|
|
62
62
|
|
63
63
|
from PyQt6 import QtWidgets
|
64
64
|
|
65
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
65
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
66
66
|
|
67
67
|
from not1mm.lib.version import __version__
|
68
68
|
|
@@ -257,11 +257,14 @@ def points(self):
|
|
257
257
|
return 0
|
258
258
|
|
259
259
|
|
260
|
-
def show_mults(self):
|
260
|
+
def show_mults(self, rtc=None):
|
261
261
|
"""Return display string for mults"""
|
262
|
-
|
263
|
-
|
264
|
-
|
262
|
+
one = int(self.database.fetch_mult_count(1).get("count", 0))
|
263
|
+
two = int(self.database.fetch_mult_count(2).get("count", 0))
|
264
|
+
if rtc is not None:
|
265
|
+
return (two, one)
|
266
|
+
|
267
|
+
return one + two
|
265
268
|
|
266
269
|
|
267
270
|
def show_qso(self):
|
@@ -631,3 +634,15 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
631
634
|
self.save_contact()
|
632
635
|
continue
|
633
636
|
self.process_function_key(button)
|
637
|
+
|
638
|
+
|
639
|
+
def get_mults(self):
|
640
|
+
"""Get mults for RTC XML"""
|
641
|
+
mults = {}
|
642
|
+
mults["country"], mults["state"] = show_mults(self, rtc=True)
|
643
|
+
return mults
|
644
|
+
|
645
|
+
|
646
|
+
def just_points(self):
|
647
|
+
"""Get points for RTC XML"""
|
648
|
+
return get_points(self)
|
@@ -33,7 +33,7 @@ import logging
|
|
33
33
|
|
34
34
|
from pathlib import Path
|
35
35
|
from PyQt6 import QtWidgets
|
36
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
36
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
37
37
|
from not1mm.lib.version import __version__
|
38
38
|
from not1mm.lib.ham_utility import distance
|
39
39
|
|
@@ -472,3 +472,14 @@ def process_esm(self, new_focused_widget=None, with_enter=False):
|
|
472
472
|
self.save_contact()
|
473
473
|
continue
|
474
474
|
self.process_function_key(button)
|
475
|
+
|
476
|
+
|
477
|
+
def get_mults(self):
|
478
|
+
""""""
|
479
|
+
mults = {}
|
480
|
+
return mults
|
481
|
+
|
482
|
+
|
483
|
+
def just_points(self):
|
484
|
+
""""""
|
485
|
+
return get_points(self)
|
@@ -21,14 +21,14 @@ import logging
|
|
21
21
|
|
22
22
|
from pathlib import Path
|
23
23
|
from PyQt6 import QtWidgets
|
24
|
-
from not1mm.lib.plugin_common import gen_adif, get_points
|
24
|
+
from not1mm.lib.plugin_common import gen_adif, get_points, online_score_xml
|
25
25
|
from not1mm.lib.version import __version__
|
26
26
|
|
27
27
|
logger = logging.getLogger(__name__)
|
28
28
|
|
29
29
|
EXCHANGE_HINT = "1O ORG"
|
30
30
|
|
31
|
-
cabrillo_name = "
|
31
|
+
cabrillo_name = "WFDA-CONTEST"
|
32
32
|
name = "Winter Field Day"
|
33
33
|
# 1 once per contest, 2 work each band, 3 each band/mode, 4 no dupe checking
|
34
34
|
mode = "BOTH" # CW SSB BOTH RTTY
|
@@ -467,3 +467,15 @@ def check_call_history(self):
|
|
467
467
|
self.other_1.setText(f"{result.get('Exch1', '')}")
|
468
468
|
if self.other_2.text() == "":
|
469
469
|
self.other_2.setText(f"{result.get('Sect', '')}")
|
470
|
+
|
471
|
+
|
472
|
+
def get_mults(self):
|
473
|
+
""""""
|
474
|
+
mults = {}
|
475
|
+
mults["wpxprefix"] = show_mults(self)
|
476
|
+
return mults
|
477
|
+
|
478
|
+
|
479
|
+
def just_points(self):
|
480
|
+
""""""
|
481
|
+
return get_points(self)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: not1mm
|
3
|
-
Version: 24.12.
|
3
|
+
Version: 24.12.9
|
4
4
|
Summary: NOT1MM Logger
|
5
5
|
Author-email: Michael Bridak <michael.bridak@gmail.com>
|
6
6
|
Project-URL: Homepage, https://github.com/mbridak/not1mm
|
@@ -239,6 +239,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
|
|
239
239
|
|
240
240
|
## Recent Changes (Polishing the Turd)
|
241
241
|
|
242
|
+
- [24-12-9] Add RTC to Winter Field Day, Stew Perry, REF, RAEM, NAQP, LZ-DX, JIDX
|
242
243
|
- [24-12-8-2] Add RTC to ARRL 10M, Tweaked cabrillo file output.
|
243
244
|
- [24-12-8-1] Changed cabrillo names for Weekly RTTY, CW Ops CWT and K1USN SST.
|
244
245
|
- [24-12-8] Fix: Weekly RTTY mults. Add RTC to Weekly RTTY.
|
@@ -115,7 +115,7 @@ not1mm/lib/plugin_common.py,sha256=-cvXtEAUgZ7GtxaNiwVdHbZ-7wEBeoMPRZXNdCxnPyA,1
|
|
115
115
|
not1mm/lib/select_contest.py,sha256=WsptLuwkouIHeocJL3oZ6-eUfEnhpwdc-x7eMZ_TIVM,359
|
116
116
|
not1mm/lib/settings.py,sha256=j5lIMLHJ-eqIaVr_QhI82gkbOl17_C-5suRkWbHYET8,14717
|
117
117
|
not1mm/lib/super_check_partial.py,sha256=hwT2NRwobu0PLDyw6ltmbmcAtGBD02CKGFbgGWjXMqA,2334
|
118
|
-
not1mm/lib/version.py,sha256=
|
118
|
+
not1mm/lib/version.py,sha256=kW55e9c7_3zPa1m5mdA-ztXMdCwYpa9CSVJDZmKiq2c,48
|
119
119
|
not1mm/lib/versiontest.py,sha256=8vDNptuBBunn-1IGkjNaquehqBYUJyjrPSF8Igmd4_Y,1286
|
120
120
|
not1mm/plugins/10_10_fall_cw.py,sha256=YDuAd9wb0XIVl1jWn4foBRWoPc7YfaWcEnl8EYsZtdI,14578
|
121
121
|
not1mm/plugins/10_10_spring_cw.py,sha256=Dqhd3dcSJk-H1cNayLfjJbstzWePt86iFY9BrpW6gnU,14583
|
@@ -150,23 +150,23 @@ not1mm/plugins/iaru_fieldday_r1_cw.py,sha256=0nSdjaGi3z0QbhapClkUHAQ3ahVCAovW3jk
|
|
150
150
|
not1mm/plugins/iaru_fieldday_r1_ssb.py,sha256=cKgwNAQqaY57oIvSVOVEA7dibdEPDKQS0ZelJxCGaBI,16930
|
151
151
|
not1mm/plugins/iaru_hf.py,sha256=wqlqKMPO0e3HNgbxbQWpckdFkaZ2e9pD3f5NDMZirCU,15824
|
152
152
|
not1mm/plugins/icwc_mst.py,sha256=XfaIRIj0BxWvpWk2nmy_dMseVuKVOh-_m3UcIGOy6wI,16475
|
153
|
-
not1mm/plugins/jidx_cw.py,sha256=
|
154
|
-
not1mm/plugins/jidx_ph.py,sha256=
|
153
|
+
not1mm/plugins/jidx_cw.py,sha256=gSScw21ac2Rpdd7jspgh5gnH9JdiR8h3YOa-41B_T94,15881
|
154
|
+
not1mm/plugins/jidx_ph.py,sha256=0E5xHs0WXh-x2Z6UC2PGqmLdIkn-jWbENOeLopr7rys,14830
|
155
155
|
not1mm/plugins/k1usn_sst.py,sha256=X9shd8_nLVLaoEonBDfgFfbaWDXcpz9pCmg6nNuQSi0,17151
|
156
|
-
not1mm/plugins/lz-dx.py,sha256=
|
157
|
-
not1mm/plugins/naqp_cw.py,sha256=
|
158
|
-
not1mm/plugins/naqp_rtty.py,sha256=
|
159
|
-
not1mm/plugins/naqp_ssb.py,sha256=
|
156
|
+
not1mm/plugins/lz-dx.py,sha256=w7YNerI1QAGkL_QffOosKvLcqjdWgEHhDd3ZInANcFU,19843
|
157
|
+
not1mm/plugins/naqp_cw.py,sha256=7Q5m8cv1mdFilXn2NFU3Uqc4rSW3Di1r_1_jBceYoOA,18914
|
158
|
+
not1mm/plugins/naqp_rtty.py,sha256=AzzMutcczXH7wTQVRLF7DxEo3HKq6IZWSFf3Lpy9UBM,22656
|
159
|
+
not1mm/plugins/naqp_ssb.py,sha256=C8aAvICTTXyOuvp4fqlr0tQYtmCX-mNSwUZJs-N_pNE,17831
|
160
160
|
not1mm/plugins/phone_weekly_test.py,sha256=xocHg61tZ5nL5n9zYzKS8ibrfwmQYa2nnEjWEgVvKdw,16325
|
161
|
-
not1mm/plugins/raem.py,sha256=
|
162
|
-
not1mm/plugins/ref_cw.py,sha256=
|
163
|
-
not1mm/plugins/ref_ssb.py,sha256=
|
164
|
-
not1mm/plugins/stew_perry_topband.py,sha256=
|
161
|
+
not1mm/plugins/raem.py,sha256=yF4WK-T8aPDxSI3pxVwYW-Q7eW9n5gvuaslEBoTYcsI,19562
|
162
|
+
not1mm/plugins/ref_cw.py,sha256=sj69Jjtm1gA9juQTRVSe3BdcCqcQXMaJMD5D1kr5QOs,20728
|
163
|
+
not1mm/plugins/ref_ssb.py,sha256=vfS9-mcnbw2znRvU4jh20JqI9BXap8jV65OV5mbCkCk,20939
|
164
|
+
not1mm/plugins/stew_perry_topband.py,sha256=D1hekmMbx-i4BhaP2uzOK3OzaVVMMdgcN3RmfweNqHo,15341
|
165
165
|
not1mm/plugins/weekly_rtty.py,sha256=huZszbZsIh4vF3cP80UyPzy3qxIoHdEiT1b6KuvwgYc,20083
|
166
|
-
not1mm/plugins/winter_field_day.py,sha256=
|
167
|
-
not1mm-24.12.
|
168
|
-
not1mm-24.12.
|
169
|
-
not1mm-24.12.
|
170
|
-
not1mm-24.12.
|
171
|
-
not1mm-24.12.
|
172
|
-
not1mm-24.12.
|
166
|
+
not1mm/plugins/winter_field_day.py,sha256=cSCFwy1LOoDDA9Zs1LHRG3r8spDMSKDisxyPxnVrLjw,15149
|
167
|
+
not1mm-24.12.9.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
168
|
+
not1mm-24.12.9.dist-info/METADATA,sha256=8dJeJDeZdvtTPTgdO2gloxsWgtgc2aTNzlvmxluaIDg,35940
|
169
|
+
not1mm-24.12.9.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
170
|
+
not1mm-24.12.9.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
|
171
|
+
not1mm-24.12.9.dist-info/top_level.txt,sha256=0YmTxEcDzQlzXub-lXASvoLpg_mt1c2thb5cVkDf5J4,7
|
172
|
+
not1mm-24.12.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|