not1mm 23.5.7__py3-none-any.whl → 23.5.8__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/__main__.py CHANGED
@@ -379,6 +379,8 @@ class MainWindow(QtWidgets.QMainWindow):
379
379
  def edit_configuration_settings(self):
380
380
  """Configuration Settings was clicked"""
381
381
  self.configuration_dialog = Settings(WORKING_PATH, CONFIG_PATH, self.pref)
382
+ if self.pref.get("dark_mode"):
383
+ self.configuration_dialog.setStyleSheet(DARK_STYLESHEET)
382
384
  self.configuration_dialog.usehamdb_radioButton.hide()
383
385
  # self.configuration_dialog.n1mm_tab.hide()
384
386
  self.configuration_dialog.show()
@@ -447,6 +449,8 @@ class MainWindow(QtWidgets.QMainWindow):
447
449
 
448
450
  if contests:
449
451
  self.contest_dialog = SelectContest(WORKING_PATH)
452
+ if self.pref.get("dark_mode"):
453
+ self.contest_dialog.setStyleSheet(DARK_STYLESHEET)
450
454
  self.contest_dialog.contest_list.setRowCount(0)
451
455
  self.contest_dialog.contest_list.setColumnCount(4)
452
456
  self.contest_dialog.contest_list.verticalHeader().setVisible(False)
@@ -504,6 +508,8 @@ class MainWindow(QtWidgets.QMainWindow):
504
508
  if self.contest_settings is None:
505
509
  return
506
510
  self.contest_dialog = NewContest(WORKING_PATH)
511
+ if self.pref.get("dark_mode"):
512
+ self.contest_dialog.setStyleSheet(DARK_STYLESHEET)
507
513
  self.contest_dialog.setWindowTitle("Edit Contest")
508
514
  self.contest_dialog.title.setText("")
509
515
  self.contest_dialog.accepted.connect(self.save_edited_contest)
@@ -615,6 +621,7 @@ class MainWindow(QtWidgets.QMainWindow):
615
621
  "RTTY": (self.Band_Mode_Frame_RTTY,),
616
622
  "PSK": (self.Band_Mode_Frame_RTTY,),
617
623
  "SSB+CW": (self.Band_Mode_Frame_CW, self.Band_Mode_Frame_SSB),
624
+ "BOTH": (self.Band_Mode_Frame_CW, self.Band_Mode_Frame_SSB),
618
625
  "DIGITAL": (self.Band_Mode_Frame_RTTY,),
619
626
  "SSB+CW+DIGITAL": (
620
627
  self.Band_Mode_Frame_RTTY,
@@ -1003,6 +1010,8 @@ class MainWindow(QtWidgets.QMainWindow):
1003
1010
  """Show settings dialog"""
1004
1011
  logger.debug("Station Settings selected")
1005
1012
  self.settings_dialog = EditStation(WORKING_PATH)
1013
+ if self.pref.get("dark_mode"):
1014
+ self.settings_dialog.setStyleSheet(DARK_STYLESHEET)
1006
1015
  self.settings_dialog.accepted.connect(self.save_settings)
1007
1016
  # if self.pref.get("dark_mode"):
1008
1017
  # self.settings_dialog.setStyleSheet(DARK_STYLESHEET)
not1mm/bandmap.py CHANGED
@@ -44,6 +44,11 @@ else:
44
44
  CONFIG_PATH = str(Path.home() / ".config")
45
45
  CONFIG_PATH += "/not1mm"
46
46
 
47
+ DARK_STYLESHEET = ""
48
+
49
+ with open(WORKING_PATH + "/data/Combinear.qss", encoding="utf-8") as stylefile:
50
+ DARK_STYLESHEET = stylefile.read()
51
+
47
52
  MULTICAST_PORT = 2239
48
53
  MULTICAST_GROUP = "224.1.1.1"
49
54
  INTERFACE_IP = "0.0.0.0"
@@ -202,6 +207,8 @@ class MainWindow(QtWidgets.QMainWindow):
202
207
  self._udpwatch = None
203
208
  data_path = WORKING_PATH + "/data/bandmap.ui"
204
209
  uic.loadUi(data_path, self)
210
+ if PREF.get("dark_mode"):
211
+ self.setStyleSheet(DARK_STYLESHEET)
205
212
  self.agetime = self.clear_spot_olderSpinBox.value()
206
213
  self.clear_spot_olderSpinBox.valueChanged.connect(self.spot_aging_changed)
207
214
  self.clearButton.clicked.connect(self.clear_spots)
@@ -308,7 +315,7 @@ class MainWindow(QtWidgets.QMainWindow):
308
315
  steps = int(round((self.currentBand.end - self.currentBand.start) / step))
309
316
  self.graphicsView.setFixedSize(330, steps * PIXELSPERSTEP + 30)
310
317
  self.graphicsView.setScene(self.bandmap_scene)
311
- for i in range(steps):
318
+ for i in range(steps): # Draw tickmarks
312
319
  length = 10
313
320
  if i % 5 == 0:
314
321
  length = 15
@@ -319,7 +326,7 @@ class MainWindow(QtWidgets.QMainWindow):
319
326
  i * PIXELSPERSTEP,
320
327
  QtGui.QPen(QtGui.QColor(192, 192, 192)),
321
328
  )
322
- if i % 5 == 0:
329
+ if i % 5 == 0: # Add Frequency
323
330
  freq = self.currentBand.start + step * i
324
331
  text = f"{freq:.3f}"
325
332
  self.something = self.bandmap_scene.addText(text)
@@ -342,12 +349,14 @@ class MainWindow(QtWidgets.QMainWindow):
342
349
  self.zoom += 1
343
350
  self.zoom = min(self.zoom, 7)
344
351
  self.update()
352
+ self.center_on_rxfreq()
345
353
 
346
354
  def dec_zoom(self):
347
355
  """doc"""
348
356
  self.zoom -= 1
349
357
  self.zoom = max(self.zoom, 1)
350
358
  self.update()
359
+ self.center_on_rxfreq()
351
360
 
352
361
  def drawTXRXMarks(self, step):
353
362
  """doc"""
@@ -355,10 +364,10 @@ class MainWindow(QtWidgets.QMainWindow):
355
364
  self.clear_freq_mark(self.bandwidth_mark)
356
365
  self.clear_freq_mark(self.rxMark)
357
366
  self.draw_bandwidth(
358
- self.rx_freq, step, QtGui.QColor(30, 30, 180), self.bandwidth_mark
367
+ self.rx_freq, step, QtGui.QColor(30, 30, 180, 180), self.bandwidth_mark
359
368
  )
360
369
  self.drawfreqmark(
361
- self.rx_freq, step, QtGui.QColor(30, 180, 30), self.rxMark
370
+ self.rx_freq, step, QtGui.QColor(30, 180, 30, 180), self.rxMark
362
371
  )
363
372
 
364
373
  def Freq2ScenePos(self, freq: float):
@@ -371,6 +380,21 @@ class MainWindow(QtWidgets.QMainWindow):
371
380
  )
372
381
  return ret
373
382
 
383
+ def center_on_rxfreq(self):
384
+ """doc"""
385
+ freq_pos = self.Freq2ScenePos(self.rx_freq).y()
386
+ self.scrollArea.verticalScrollBar().setValue(
387
+ int(freq_pos - (self.height() / 2) + 80)
388
+ )
389
+ # This does not work... Have no idea why.
390
+ # anim = QtCore.QPropertyAnimation(
391
+ # self.scrollArea.verticalScrollBar(), "value".encode()
392
+ # )
393
+ # anim.setDuration(300)
394
+ # anim.setStartValue(self.scrollArea.verticalScrollBar().value())
395
+ # anim.setEndValue(int(freq_pos - (self.height() / 2) + 80))
396
+ # anim.start(QtCore.QAbstractAnimation.DeletionPolicy.DeleteWhenStopped)
397
+
374
398
  def drawfreqmark(self, freq, step, color, currentPolygon):
375
399
  """doc"""
376
400
 
@@ -397,7 +421,7 @@ class MainWindow(QtWidgets.QMainWindow):
397
421
  if freq < self.currentBand.start or freq > self.currentBand.end:
398
422
  return
399
423
  if freq and self.bandwidth:
400
- color = QtGui.QColor(30, 30, 180)
424
+ # color = QtGui.QColor(30, 30, 180)
401
425
  bw_start = freq - ((self.bandwidth / 2) / 1000000)
402
426
  bw_end = freq + ((self.bandwidth / 2) / 1000000)
403
427
  logger.debug("%s", f"s:{bw_start} e:{bw_end}")
@@ -523,6 +547,12 @@ class MainWindow(QtWidgets.QMainWindow):
523
547
  self.send_command("set dx extension Name CTY State Section")
524
548
  self.send_command("set dx mode " + PREF.get("cluster_mode", "OPEN"))
525
549
  return
550
+ if "call:" in data:
551
+ self.send_command(self.callsignField.text())
552
+ self.send_command(PREF.get("cluster_filter", ""))
553
+ self.send_command("set dx extension Name CTY State Section")
554
+ self.send_command("set dx mode " + PREF.get("cluster_mode", "OPEN"))
555
+ return
526
556
  if "DX de" in data:
527
557
  parts = data.split()
528
558
  spotter = parts[2]
not1mm/data/main.ui CHANGED
@@ -6,8 +6,8 @@
6
6
  <rect>
7
7
  <x>0</x>
8
8
  <y>0</y>
9
- <width>1975</width>
10
- <height>366</height>
9
+ <width>1731</width>
10
+ <height>358</height>
11
11
  </rect>
12
12
  </property>
13
13
  <property name="sizePolicy">
@@ -645,7 +645,6 @@
645
645
  <font>
646
646
  <family>JetBrains Mono</family>
647
647
  <pointsize>20</pointsize>
648
- <weight>75</weight>
649
648
  <bold>true</bold>
650
649
  </font>
651
650
  </property>
@@ -1019,11 +1018,19 @@
1019
1018
  <rect>
1020
1019
  <x>0</x>
1021
1020
  <y>0</y>
1022
- <width>1975</width>
1023
- <height>23</height>
1021
+ <width>1731</width>
1022
+ <height>30</height>
1024
1023
  </rect>
1025
1024
  </property>
1025
+ <property name="nativeMenuBar">
1026
+ <bool>true</bool>
1027
+ </property>
1026
1028
  <widget class="QMenu" name="menuFile">
1029
+ <property name="font">
1030
+ <font>
1031
+ <family>JetBrains Mono</family>
1032
+ </font>
1033
+ </property>
1027
1034
  <property name="title">
1028
1035
  <string>File</string>
1029
1036
  </property>
not1mm/lib/version.py CHANGED
@@ -1,2 +1,2 @@
1
1
  """It's the version"""
2
- __version__ = "23.5.7"
2
+ __version__ = "23.5.8"
not1mm/logwindow.py CHANGED
@@ -45,6 +45,11 @@ else:
45
45
  CONFIG_PATH = str(Path.home() / ".config")
46
46
  CONFIG_PATH += "/not1mm"
47
47
 
48
+ DARK_STYLESHEET = ""
49
+
50
+ with open(WORKING_PATH + "/data/Combinear.qss", encoding="utf-8") as stylefile:
51
+ DARK_STYLESHEET = stylefile.read()
52
+
48
53
  MULTICAST_PORT = 2239
49
54
  MULTICAST_GROUP = "224.1.1.1"
50
55
  INTERFACE_IP = "0.0.0.0"
@@ -92,6 +97,8 @@ class MainWindow(QtWidgets.QMainWindow):
92
97
  self._udpwatch = None
93
98
  self.udp_fifo = queue.Queue()
94
99
  self.load_pref()
100
+ if self.pref.get("dark_mode"):
101
+ self.setStyleSheet(DARK_STYLESHEET)
95
102
  self.dbname = DATA_PATH + "/" + self.pref.get("current_database", "ham.db")
96
103
  self.database = DataBase(self.dbname, WORKING_PATH)
97
104
  self.database.current_contest = self.pref.get("contest", 0)
@@ -256,6 +263,8 @@ class MainWindow(QtWidgets.QMainWindow):
256
263
  """Show edit contact dialog"""
257
264
  logger.debug("Edit: %s", uuid)
258
265
  self.edit_contact_dialog = EditContact(WORKING_PATH)
266
+ if self.pref.get("dark_mode"):
267
+ self.edit_contact_dialog.setStyleSheet(DARK_STYLESHEET)
259
268
  self.edit_contact_dialog.accepted.connect(self.save_edited_contact)
260
269
  self.contact = self.database.fetch_contact_by_uuid(uuid)
261
270
  self.edit_contact_dialog.delete_2.clicked.connect(self.delete_contact)
@@ -45,10 +45,8 @@ def interface(self):
45
45
  self.field2.show()
46
46
  self.field3.show()
47
47
  self.field4.show()
48
- label = self.field3.findChild(QtWidgets.QLabel)
49
- label.setText("SentNR")
50
- label = self.field4.findChild(QtWidgets.QLabel)
51
- label.setText("RcvNR")
48
+ self.other_label.setText("SentNR")
49
+ self.exch_label.setText("RcvNR")
52
50
 
53
51
 
54
52
  def reset_label(self):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: not1mm
3
- Version: 23.5.7
3
+ Version: 23.5.8
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
@@ -35,8 +35,7 @@ Requires-Dist: soundfile
35
35
 
36
36
  - [Not1MM](#not1mm)
37
37
  - [What and why is Not1MM](#what-and-why-is-not1mm)
38
- - [What it is not](#what-it-is-not)
39
- - [What it probably never will be](#what-it-probably-never-will-be)
38
+ - [Current state](#current-state)
40
39
  - [List of should be working contests](#list-of-should-be-working-contests)
41
40
  - [Changes of note](#changes-of-note)
42
41
  - [Installing from PyPi](#installing-from-pypi)
@@ -97,15 +96,9 @@ I personally don't. While it may be possible to get N1MM working under Wine, I h
97
96
  Something to do in my free time.
98
97
  While I'm not watching TV, Right vs Left political 'News' programs, mind numbing 'Reality' TV etc...
99
98
 
100
- ## What it is not
99
+ ## Current state
101
100
 
102
- Fully working.
103
-
104
- The current state is "**BETA**". I've used it for CQ WPX SSB and JIDX CW, and was able to work contacts and submit a cabrillo at the end. I'll add contests as/if I work them.
105
-
106
- ## What it probably never will be
107
-
108
- Feature complete. I'm only one guy, and I'm not what you'd consider to be a contester. So new contests will be sparse.
101
+ The current state is "**BETA**". I've used it for A few contests, and was able to work contacts and submit a cabrillo at the end. I'm not a "Contester". So I'll add contests as/if I work them. I'm only one guy, so if you see a bug let me know. I don't do much of any Data or RTTY operating. This is why you don't see RTTY in the list of working contests. The Lord helps those who burn people at the... I mean who help themselves. Feel free to fill in that hole with a pull request.
109
102
 
110
103
  ![main screen](https://github.com/mbridak/not1mm/raw/master/pic/main.png)
111
104
 
@@ -130,6 +123,7 @@ Feature complete. I'm only one guy, and I'm not what you'd consider to be a cont
130
123
 
131
124
  ## Changes of note
132
125
 
126
+ - [23-5-8] Bandmap zoom in/out now centers scale to RX Freq.
133
127
  - [23-5-7] Added bandwidth marker to the bandmap.
134
128
  - [23-5-6] Added AR Cluster filter options for the bandmap. Added a station ID to the multicast packets. This will prevent erratic bevahiour if 2 stations are on the same network.
135
129
  - [23-5-5] Re-wrote most of the log window code. Added ARRL Sweepstakes.
@@ -170,7 +164,7 @@ Feature complete. I'm only one guy, and I'm not what you'd consider to be a cont
170
164
  - [23-3-27] Fix cursor behaviour when editing text in callsign field.
171
165
  - [23-3-25] Fix minimum call length. Fix cabrillo tag. Add adif output.
172
166
  - [23-3-24] Added dupe checking. Added CAT check for flrig or rigctld. Added online flag for flrig.
173
- - [23-3-23] Added json_data.get("cmd", "")most of Cabrillo generation. Plan to test it this weekends CQ WPX SSB.
167
+ - [23-3-23] Added most of Cabrillo generation. Plan to test it this weekends CQ WPX SSB.
174
168
  - [23-3-22] Add prefill of serial nr. set OP call on startup. Set IsMultiplier1 new unique wpx. Add OP and contest name to window title. and stuff.
175
169
  - [23-3-21] Worked on CQ WPX SSB plugin.
176
170
  - [23-3-20] Added a contact edit dialog. RightClick to edit contact. Changed placeholder text color in settings dialog. Hooked up CW speedchange widget. PgUp/PgDn to change speed.
@@ -259,8 +253,6 @@ not1mm
259
253
 
260
254
  ## Various data file locations
261
255
 
262
- json_data.get("cmd", "")
263
-
264
256
  ### Data
265
257
 
266
258
  If your system has an `XDG_DATA_HOME` environment variable set, the database and CW macro files can be found there. Otherwise they will be found at `yourhome/.local/share/not1mm`
@@ -1,7 +1,7 @@
1
1
  not1mm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- not1mm/__main__.py,sha256=h1LrfrUPe9vDM06aV0WOD4rZhYKi5gzCvbKthaEjzd8,78623
3
- not1mm/bandmap.py,sha256=xqUXixCIoHfncJ2iOlgt595aSSjOUJ70vvToRy8Wsbw,20323
4
- not1mm/logwindow.py,sha256=VWB_uyi9SKafwgVRZWiq1dW_l3otDPu010pTHO8wRsQ,30050
2
+ not1mm/__main__.py,sha256=AQeowClF6O_IXSEhZipTsPJmPrvG3qXZoEFhwskqGik,79119
3
+ not1mm/bandmap.py,sha256=eRks_QCy8aRVvxXi34B5nda0lVw1ZYMZl4hWnRlN3QM,21632
4
+ not1mm/logwindow.py,sha256=etDssxhO2N6UzPcSdkPHXQR-8JJHThjvEMGC6ufkO1Q,30386
5
5
  not1mm/data/Combinear.qss,sha256=SKqM0g8GvNXay1ovgtwCw3Egt0eLfN5P3iTREInC1eE,16590
6
6
  not1mm/data/JetBrainsMono-Regular.ttf,sha256=UOHctAKY_PzCGh7zy-6f6egnCcSK0wzmF0csBqO9lDY,203952
7
7
  not1mm/data/MASTER.SCP,sha256=oqUB3Fvy40vU-ra-R3-cvTeBnZWW04Da1Et011UITbI,542666
@@ -21,7 +21,7 @@ not1mm/data/k6gte.not1mm-128.png,sha256=vWqt3Cgsaguj-BBiIoSJApzzhisPxldM8HZQbZ05
21
21
  not1mm/data/k6gte.not1mm-32.png,sha256=yucSwzlmqv3NegdWUvPvZzSgP7G22Ky3se8TWRXvzfI,1108
22
22
  not1mm/data/k6gte.not1mm-64.png,sha256=1KQvk0WBckUds79BvIFUt-KdTwQKKvTz6hiJu8MiT68,2152
23
23
  not1mm/data/logwindow.ui,sha256=_-wobHhIjALzCswyXIrqNadnLdc88eay1GNF23a-Qh0,970
24
- not1mm/data/main.ui,sha256=jWHKzooyCb1l7lC64k-Wi-8TGA-cMNvJoYtubjFDV48,43767
24
+ not1mm/data/main.ui,sha256=MUty-VU-5FMvXAmBEkzAfQR9Tn6yhjZ1L7tFaAoDjhw,43909
25
25
  not1mm/data/new_contest.ui,sha256=_w_tLQ3FZ-sqohkTX4OxbWv7EmEb0OG81_3O9pn3maw,17963
26
26
  not1mm/data/opon.ui,sha256=6r9_6ORGfNqwOnpzQjaJ1tWP_81amuXqLYlx1hHgdME,2018
27
27
  not1mm/data/pickcontest.ui,sha256=_9JFiJw4l-bRRgNDtVg1DpxreylYd_UqEq0wfcr9gJc,1600
@@ -92,7 +92,7 @@ not1mm/lib/n1mm.py,sha256=bK5d21Yfn6xRpQcu2RdpL2zR8lOlRWOadD6Ai4_lFdc,4434
92
92
  not1mm/lib/new_contest.py,sha256=mHKNCS3iKOKN-bT9d8ZK3JemThOZFQ0ikfUSS0-ZTpY,354
93
93
  not1mm/lib/select_contest.py,sha256=XQdRUkPAIHIMVsilm82M54b_v9yWpYrZ1nfInJrtZoo,363
94
94
  not1mm/lib/settings.py,sha256=InjbBzXikT9UqfWP_Tl35aGFaRM4URmgKeSUxXHH3VQ,6188
95
- not1mm/lib/version.py,sha256=RdFEgHI7TggIF1mfz_mnPdgCFba0eKVP9_vxt-OW3j0,46
95
+ not1mm/lib/version.py,sha256=keVaD-q9RJuqQFk4WZAu2AeL6fUX5J_WFumqvPTy8Kk,46
96
96
  not1mm/plugins/10_10_fall_cw.py,sha256=EJ2CPLQUb_SNkbXJw8hGk-M74IDxjQZDl3imiebxYa0,13746
97
97
  not1mm/plugins/10_10_spring_cw.py,sha256=NqsV2cWsMVuqBM98SLhacladI_gFiOUnlaI7jPbiZoQ,13752
98
98
  not1mm/plugins/10_10_summer_phone.py,sha256=9sZdeon3pCIIfmKOXIt5kUIejmb_L0xb8CYx9bd8llk,13759
@@ -104,7 +104,7 @@ not1mm/plugins/arrl_field_day.py,sha256=oTSyj-Xrbe9Gpk1SgAZh_mN9AnlmDQsz9RjSmOLO
104
104
  not1mm/plugins/arrl_rtty_ru.py,sha256=ehbrcbEGPbutduInyQXl_eqCWA61sekrTkvEXIiFlUA,2860
105
105
  not1mm/plugins/arrl_ss_cw.py,sha256=T1ZF0wp7Uz8ImykSMBMkTiK22VyfpQUAAs6fLesz4fY,15941
106
106
  not1mm/plugins/arrl_ss_phone.py,sha256=HfCzHQlRK7naejVJ3eK_RdQDtxT9LuHcRLj1PYSqWd0,15946
107
- not1mm/plugins/cq_wpx_cw.py,sha256=mC5grCYt6WtYzXcWvXpngRTom13KR5IzjYwX8UfCNRA,15022
107
+ not1mm/plugins/cq_wpx_cw.py,sha256=Vh0Uiwh2mKy14qtYQsEYuHafD6Y5iRoi-s01YqbbjIY,14939
108
108
  not1mm/plugins/cq_wpx_ssb.py,sha256=Wj14ByQMqQdLzU7VRm8yQWGfMPMW9yBl25jGvpvRKp0,15026
109
109
  not1mm/plugins/cq_ww_cw.py,sha256=VeybmlippQBMpPf0QXRvwjr9TdJRN-xSd74o8EUzt5I,13895
110
110
  not1mm/plugins/cq_ww_ssb.py,sha256=XdsbsPPuc8OgXOCcyJd8knQtjwiJ8HfYz9hsziRka_o,13899
@@ -115,9 +115,9 @@ not1mm/plugins/jidx_ph.py,sha256=nM5iPKowCm7jOszPuAmNXB9gAC7VNtZ4N6g9MAdYcdk,138
115
115
  not1mm/plugins/winter_field_day.py,sha256=22mWjH4SwARTEEqb4ZUJSBk_gOG4pvvmGgTQuoSR7As,3121
116
116
  not1mm/testing/test.py,sha256=XSwHWvWqaXznmZvBgwhoVTugEz7Gv5Ek6f4ol5cefEM,565
117
117
  testing/test.py,sha256=0jvT_UcvgcAGwkJNnB9PBDmQhLHQl85NQyT5f9GKBuQ,2248
118
- not1mm-23.5.7.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
119
- not1mm-23.5.7.dist-info/METADATA,sha256=9JMuoliugmF1xOrx9nM40K9sivmStf4X34YwLPLnFjc,24103
120
- not1mm-23.5.7.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
121
- not1mm-23.5.7.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
122
- not1mm-23.5.7.dist-info/top_level.txt,sha256=-NwUrh4k1kzpOvf720xYWSTKSlr-zNSIz3D_eplrxLs,15
123
- not1mm-23.5.7.dist-info/RECORD,,
118
+ not1mm-23.5.8.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
119
+ not1mm-23.5.8.dist-info/METADATA,sha256=JQFdkQV_XtCbhaHm5549hx7XYu0HHaWQy__6WPS4Opk,24177
120
+ not1mm-23.5.8.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
121
+ not1mm-23.5.8.dist-info/entry_points.txt,sha256=pMcZk_0dxFgLkcUkF0Q874ojpwOmF3OL6EKw9LgvocM,47
122
+ not1mm-23.5.8.dist-info/top_level.txt,sha256=-NwUrh4k1kzpOvf720xYWSTKSlr-zNSIz3D_eplrxLs,15
123
+ not1mm-23.5.8.dist-info/RECORD,,