not1mm 24.2.3__py3-none-any.whl → 24.2.13__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/data/MASTER.SCP +1483 -1219
- not1mm/data/cty.json +1 -1
- not1mm/lib/version.py +1 -1
- not1mm/plugins/10_10_fall_cw.py +6 -0
- not1mm/plugins/10_10_spring_cw.py +6 -0
- not1mm/plugins/10_10_summer_phone.py +6 -0
- not1mm/plugins/10_10_winter_phone.py +7 -1
- not1mm/plugins/arrl_10m.py +6 -0
- not1mm/plugins/arrl_dx_cw.py +9 -2
- not1mm/plugins/arrl_dx_ssb.py +11 -2
- not1mm/plugins/arrl_field_day.py +6 -0
- not1mm/plugins/arrl_ss_cw.py +6 -0
- not1mm/plugins/arrl_ss_phone.py +6 -0
- not1mm/plugins/arrl_vhf_jan.py +6 -1
- not1mm/plugins/arrl_vhf_jun.py +6 -1
- not1mm/plugins/arrl_vhf_sep.py +6 -0
- not1mm/plugins/canada_day.py +6 -0
- not1mm/plugins/cq_wpx_cw.py +6 -0
- not1mm/plugins/cq_wpx_ssb.py +6 -0
- not1mm/plugins/cq_ww_cw.py +6 -0
- not1mm/plugins/cq_ww_ssb.py +6 -0
- not1mm/plugins/cwt.py +6 -0
- not1mm/plugins/iaru_hf.py +6 -0
- not1mm/plugins/jidx_cw.py +6 -0
- not1mm/plugins/jidx_ph.py +6 -0
- not1mm/plugins/naqp_cw.py +6 -0
- not1mm/plugins/naqp_ssb.py +6 -0
- not1mm/plugins/phone_weekly_test.py +6 -0
- not1mm/plugins/stew_perry_topband.py +6 -0
- not1mm/plugins/winter_field_day.py +6 -0
- not1mm/testing/simulant.py +384 -0
- {not1mm-24.2.3.dist-info → not1mm-24.2.13.dist-info}/METADATA +3 -1
- {not1mm-24.2.3.dist-info → not1mm-24.2.13.dist-info}/RECORD +37 -36
- {not1mm-24.2.3.dist-info → not1mm-24.2.13.dist-info}/LICENSE +0 -0
- {not1mm-24.2.3.dist-info → not1mm-24.2.13.dist-info}/WHEEL +0 -0
- {not1mm-24.2.3.dist-info → not1mm-24.2.13.dist-info}/entry_points.txt +0 -0
- {not1mm-24.2.3.dist-info → not1mm-24.2.13.dist-info}/top_level.txt +0 -0
not1mm/lib/version.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
"""It's the version"""
|
2
|
-
__version__ = "24.2.
|
2
|
+
__version__ = "24.2.13"
|
not1mm/plugins/10_10_fall_cw.py
CHANGED
@@ -193,6 +193,12 @@ def cabrillo(self):
|
|
193
193
|
end="\r\n",
|
194
194
|
file=file_descriptor,
|
195
195
|
)
|
196
|
+
if self.station.get("Club", ""):
|
197
|
+
print(
|
198
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
199
|
+
end="\r\n",
|
200
|
+
file=file_descriptor,
|
201
|
+
)
|
196
202
|
print(
|
197
203
|
f"CALLSIGN: {self.station.get('Call','')}",
|
198
204
|
end="\r\n",
|
@@ -193,6 +193,12 @@ def cabrillo(self):
|
|
193
193
|
end="\r\n",
|
194
194
|
file=file_descriptor,
|
195
195
|
)
|
196
|
+
if self.station.get("Club", ""):
|
197
|
+
print(
|
198
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
199
|
+
end="\r\n",
|
200
|
+
file=file_descriptor,
|
201
|
+
)
|
196
202
|
print(
|
197
203
|
f"CALLSIGN: {self.station.get('Call','')}",
|
198
204
|
end="\r\n",
|
@@ -194,6 +194,12 @@ def cabrillo(self):
|
|
194
194
|
end="\r\n",
|
195
195
|
file=file_descriptor,
|
196
196
|
)
|
197
|
+
if self.station.get("Club", ""):
|
198
|
+
print(
|
199
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
200
|
+
end="\r\n",
|
201
|
+
file=file_descriptor,
|
202
|
+
)
|
197
203
|
print(
|
198
204
|
f"CALLSIGN: {self.station.get('Call','')}",
|
199
205
|
end="\r\n",
|
@@ -15,7 +15,7 @@ from not1mm.lib.version import __version__
|
|
15
15
|
logger = logging.getLogger("__main__")
|
16
16
|
|
17
17
|
name = "10 10 WINTER PHONE"
|
18
|
-
cabrillo_name = "10-10-
|
18
|
+
cabrillo_name = "10-10-WINTER-PHONE"
|
19
19
|
mode = "SSB" # CW SSB BOTH RTTY
|
20
20
|
# columns = [0, 1, 2, 3, 4, 5, 6, 15]
|
21
21
|
columns = [
|
@@ -194,6 +194,12 @@ def cabrillo(self):
|
|
194
194
|
end="\r\n",
|
195
195
|
file=file_descriptor,
|
196
196
|
)
|
197
|
+
if self.station.get("Club", ""):
|
198
|
+
print(
|
199
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
200
|
+
end="\r\n",
|
201
|
+
file=file_descriptor,
|
202
|
+
)
|
197
203
|
print(
|
198
204
|
f"CALLSIGN: {self.station.get('Call','')}",
|
199
205
|
end="\r\n",
|
not1mm/plugins/arrl_10m.py
CHANGED
@@ -276,6 +276,12 @@ def cabrillo(self):
|
|
276
276
|
end="\r\n",
|
277
277
|
file=file_descriptor,
|
278
278
|
)
|
279
|
+
if self.station.get("Club", ""):
|
280
|
+
print(
|
281
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
282
|
+
end="\r\n",
|
283
|
+
file=file_descriptor,
|
284
|
+
)
|
279
285
|
print(
|
280
286
|
f"CALLSIGN: {self.station.get('Call','')}",
|
281
287
|
end="\r\n",
|
not1mm/plugins/arrl_dx_cw.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
"""ARRL plugin"""
|
2
2
|
|
3
3
|
# pylint: disable=invalid-name, unused-argument, unused-variable, c-extension-no-member, unused-import
|
4
|
+
# pylint: disable=logging-fstring-interpolation
|
4
5
|
|
5
6
|
import datetime
|
6
7
|
import logging
|
@@ -116,12 +117,12 @@ def points(self):
|
|
116
117
|
result = self.cty_lookup(self.station.get("Call", ""))
|
117
118
|
if result:
|
118
119
|
for item in result.items():
|
119
|
-
mycountry = item[1].get("
|
120
|
+
mycountry = item[1].get("primary_pfx", "")
|
120
121
|
# mycontinent = item[1].get("continent", "")
|
121
122
|
result = self.cty_lookup(self.contact.get("Call", ""))
|
122
123
|
if result:
|
123
124
|
for item in result.items():
|
124
|
-
entity = item[1].get("
|
125
|
+
entity = item[1].get("primary_pfx", "")
|
125
126
|
# continent = item[1].get("continent", "")
|
126
127
|
if mycountry in ["K", "VE"]:
|
127
128
|
if entity in ["K", "VE"]:
|
@@ -195,6 +196,12 @@ def cabrillo(self):
|
|
195
196
|
end="\r\n",
|
196
197
|
file=file_descriptor,
|
197
198
|
)
|
199
|
+
if self.station.get("Club", ""):
|
200
|
+
print(
|
201
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
202
|
+
end="\r\n",
|
203
|
+
file=file_descriptor,
|
204
|
+
)
|
198
205
|
print(
|
199
206
|
f"CALLSIGN: {self.station.get('Call','')}",
|
200
207
|
end="\r\n",
|
not1mm/plugins/arrl_dx_ssb.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
"""ARRL plugin"""
|
2
2
|
|
3
3
|
# pylint: disable=invalid-name, unused-argument, unused-variable, c-extension-no-member, unused-import
|
4
|
+
# pylint: disable=logging-fstring-interpolation
|
4
5
|
|
5
6
|
import datetime
|
6
7
|
import logging
|
@@ -114,14 +115,16 @@ def prefill(self):
|
|
114
115
|
def points(self):
|
115
116
|
"""Calc point"""
|
116
117
|
result = self.cty_lookup(self.station.get("Call", ""))
|
118
|
+
logger.debug(f"our lookup result: {result}")
|
117
119
|
if result:
|
118
120
|
for item in result.items():
|
119
|
-
mycountry = item[1].get("
|
121
|
+
mycountry = item[1].get("primary_pfx", "")
|
120
122
|
# mycontinent = item[1].get("continent", "")
|
121
123
|
result = self.cty_lookup(self.contact.get("Call", ""))
|
124
|
+
logger.debug(f"their lookup result: {result}")
|
122
125
|
if result:
|
123
126
|
for item in result.items():
|
124
|
-
entity = item[1].get("
|
127
|
+
entity = item[1].get("primary_pfx", "")
|
125
128
|
# continent = item[1].get("continent", "")
|
126
129
|
if mycountry in ["K", "VE"]:
|
127
130
|
if entity in ["K", "VE"]:
|
@@ -195,6 +198,12 @@ def cabrillo(self):
|
|
195
198
|
end="\r\n",
|
196
199
|
file=file_descriptor,
|
197
200
|
)
|
201
|
+
if self.station.get("Club", ""):
|
202
|
+
print(
|
203
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
204
|
+
end="\r\n",
|
205
|
+
file=file_descriptor,
|
206
|
+
)
|
198
207
|
print(
|
199
208
|
f"CALLSIGN: {self.station.get('Call','')}",
|
200
209
|
end="\r\n",
|
not1mm/plugins/arrl_field_day.py
CHANGED
@@ -171,6 +171,12 @@ def cabrillo(self):
|
|
171
171
|
end="\r\n",
|
172
172
|
file=file_descriptor,
|
173
173
|
)
|
174
|
+
if self.station.get("Club", ""):
|
175
|
+
print(
|
176
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
177
|
+
end="\r\n",
|
178
|
+
file=file_descriptor,
|
179
|
+
)
|
174
180
|
print(
|
175
181
|
f"CALLSIGN: {self.station.get('Call','')}",
|
176
182
|
end="\r\n",
|
not1mm/plugins/arrl_ss_cw.py
CHANGED
@@ -205,6 +205,12 @@ def cabrillo(self):
|
|
205
205
|
end="\r\n",
|
206
206
|
file=file_descriptor,
|
207
207
|
)
|
208
|
+
if self.station.get("Club", ""):
|
209
|
+
print(
|
210
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
211
|
+
end="\r\n",
|
212
|
+
file=file_descriptor,
|
213
|
+
)
|
208
214
|
print(
|
209
215
|
f"CALLSIGN: {self.station.get('Call','')}",
|
210
216
|
end="\r\n",
|
not1mm/plugins/arrl_ss_phone.py
CHANGED
@@ -205,6 +205,12 @@ def cabrillo(self):
|
|
205
205
|
end="\r\n",
|
206
206
|
file=file_descriptor,
|
207
207
|
)
|
208
|
+
if self.station.get("Club", ""):
|
209
|
+
print(
|
210
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
211
|
+
end="\r\n",
|
212
|
+
file=file_descriptor,
|
213
|
+
)
|
208
214
|
print(
|
209
215
|
f"CALLSIGN: {self.station.get('Call','')}",
|
210
216
|
end="\r\n",
|
not1mm/plugins/arrl_vhf_jan.py
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
"""ARRL Jan VHF"""
|
2
2
|
|
3
|
-
|
4
3
|
# Status: Active
|
5
4
|
# Geographic Focus: United States/Canada
|
6
5
|
# Participation: Worldwide
|
@@ -253,6 +252,12 @@ def cabrillo(self):
|
|
253
252
|
end="\r\n",
|
254
253
|
file=file_descriptor,
|
255
254
|
)
|
255
|
+
if self.station.get("Club", ""):
|
256
|
+
print(
|
257
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
258
|
+
end="\r\n",
|
259
|
+
file=file_descriptor,
|
260
|
+
)
|
256
261
|
print(
|
257
262
|
f"CALLSIGN: {self.station.get('Call','')}",
|
258
263
|
end="\r\n",
|
not1mm/plugins/arrl_vhf_jun.py
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
"""ARRL Jun VHF"""
|
2
2
|
|
3
|
-
|
4
3
|
# Cabrillo name: ARRL-VHF-JUN
|
5
4
|
# Cabrillo name aliases: ARRL-VHF
|
6
5
|
|
@@ -221,6 +220,12 @@ def cabrillo(self):
|
|
221
220
|
end="\r\n",
|
222
221
|
file=file_descriptor,
|
223
222
|
)
|
223
|
+
if self.station.get("Club", ""):
|
224
|
+
print(
|
225
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
226
|
+
end="\r\n",
|
227
|
+
file=file_descriptor,
|
228
|
+
)
|
224
229
|
print(
|
225
230
|
f"CALLSIGN: {self.station.get('Call','')}",
|
226
231
|
end="\r\n",
|
not1mm/plugins/arrl_vhf_sep.py
CHANGED
@@ -220,6 +220,12 @@ def cabrillo(self):
|
|
220
220
|
end="\r\n",
|
221
221
|
file=file_descriptor,
|
222
222
|
)
|
223
|
+
if self.station.get("Club", ""):
|
224
|
+
print(
|
225
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
226
|
+
end="\r\n",
|
227
|
+
file=file_descriptor,
|
228
|
+
)
|
223
229
|
print(
|
224
230
|
f"CALLSIGN: {self.station.get('Call','')}",
|
225
231
|
end="\r\n",
|
not1mm/plugins/canada_day.py
CHANGED
@@ -250,6 +250,12 @@ def cabrillo(self):
|
|
250
250
|
end="\r\n",
|
251
251
|
file=file_descriptor,
|
252
252
|
)
|
253
|
+
if self.station.get("Club", ""):
|
254
|
+
print(
|
255
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
256
|
+
end="\r\n",
|
257
|
+
file=file_descriptor,
|
258
|
+
)
|
253
259
|
print(
|
254
260
|
f"CALLSIGN: {self.station.get('Call','')}",
|
255
261
|
end="\r\n",
|
not1mm/plugins/cq_wpx_cw.py
CHANGED
@@ -224,6 +224,12 @@ def cabrillo(self):
|
|
224
224
|
end="\r\n",
|
225
225
|
file=file_descriptor,
|
226
226
|
)
|
227
|
+
if self.station.get("Club", ""):
|
228
|
+
print(
|
229
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
230
|
+
end="\r\n",
|
231
|
+
file=file_descriptor,
|
232
|
+
)
|
227
233
|
print(
|
228
234
|
f"CALLSIGN: {self.station.get('Call','')}",
|
229
235
|
end="\r\n",
|
not1mm/plugins/cq_wpx_ssb.py
CHANGED
@@ -226,6 +226,12 @@ def cabrillo(self):
|
|
226
226
|
end="\r\n",
|
227
227
|
file=file_descriptor,
|
228
228
|
)
|
229
|
+
if self.station.get("Club", ""):
|
230
|
+
print(
|
231
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
232
|
+
end="\r\n",
|
233
|
+
file=file_descriptor,
|
234
|
+
)
|
229
235
|
print(
|
230
236
|
f"CALLSIGN: {self.station.get('Call','')}",
|
231
237
|
end="\r\n",
|
not1mm/plugins/cq_ww_cw.py
CHANGED
@@ -195,6 +195,12 @@ def cabrillo(self):
|
|
195
195
|
end="\r\n",
|
196
196
|
file=file_descriptor,
|
197
197
|
)
|
198
|
+
if self.station.get("Club", ""):
|
199
|
+
print(
|
200
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
201
|
+
end="\r\n",
|
202
|
+
file=file_descriptor,
|
203
|
+
)
|
198
204
|
print(
|
199
205
|
f"CALLSIGN: {self.station.get('Call','')}",
|
200
206
|
end="\r\n",
|
not1mm/plugins/cq_ww_ssb.py
CHANGED
@@ -195,6 +195,12 @@ def cabrillo(self):
|
|
195
195
|
end="\r\n",
|
196
196
|
file=file_descriptor,
|
197
197
|
)
|
198
|
+
if self.station.get("Club", ""):
|
199
|
+
print(
|
200
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
201
|
+
end="\r\n",
|
202
|
+
file=file_descriptor,
|
203
|
+
)
|
198
204
|
print(
|
199
205
|
f"CALLSIGN: {self.station.get('Call','')}",
|
200
206
|
end="\r\n",
|
not1mm/plugins/cwt.py
CHANGED
@@ -201,6 +201,12 @@ def cabrillo(self):
|
|
201
201
|
end="\r\n",
|
202
202
|
file=file_descriptor,
|
203
203
|
)
|
204
|
+
if self.station.get("Club", ""):
|
205
|
+
print(
|
206
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
207
|
+
end="\r\n",
|
208
|
+
file=file_descriptor,
|
209
|
+
)
|
204
210
|
print(
|
205
211
|
f"CALLSIGN: {self.station.get('Call','')}",
|
206
212
|
end="\r\n",
|
not1mm/plugins/iaru_hf.py
CHANGED
@@ -212,6 +212,12 @@ def cabrillo(self):
|
|
212
212
|
end="\r\n",
|
213
213
|
file=file_descriptor,
|
214
214
|
)
|
215
|
+
if self.station.get("Club", ""):
|
216
|
+
print(
|
217
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
218
|
+
end="\r\n",
|
219
|
+
file=file_descriptor,
|
220
|
+
)
|
215
221
|
print(
|
216
222
|
f"CALLSIGN: {self.station.get('Call','')}",
|
217
223
|
end="\r\n",
|
not1mm/plugins/jidx_cw.py
CHANGED
@@ -238,6 +238,12 @@ def cabrillo(self):
|
|
238
238
|
end="\r\n",
|
239
239
|
file=file_descriptor,
|
240
240
|
)
|
241
|
+
if self.station.get("Club", ""):
|
242
|
+
print(
|
243
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
244
|
+
end="\r\n",
|
245
|
+
file=file_descriptor,
|
246
|
+
)
|
241
247
|
print(
|
242
248
|
f"CALLSIGN: {self.station.get('Call','')}",
|
243
249
|
end="\r\n",
|
not1mm/plugins/jidx_ph.py
CHANGED
@@ -238,6 +238,12 @@ def cabrillo(self):
|
|
238
238
|
end="\r\n",
|
239
239
|
file=file_descriptor,
|
240
240
|
)
|
241
|
+
if self.station.get("Club", ""):
|
242
|
+
print(
|
243
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
244
|
+
end="\r\n",
|
245
|
+
file=file_descriptor,
|
246
|
+
)
|
241
247
|
print(
|
242
248
|
f"CALLSIGN: {self.station.get('Call','')}",
|
243
249
|
end="\r\n",
|
not1mm/plugins/naqp_cw.py
CHANGED
@@ -188,6 +188,12 @@ def cabrillo(self):
|
|
188
188
|
end="\r\n",
|
189
189
|
file=file_descriptor,
|
190
190
|
)
|
191
|
+
if self.station.get("Club", ""):
|
192
|
+
print(
|
193
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
194
|
+
end="\r\n",
|
195
|
+
file=file_descriptor,
|
196
|
+
)
|
191
197
|
print(
|
192
198
|
f"CALLSIGN: {self.station.get('Call','')}",
|
193
199
|
end="\r\n",
|
not1mm/plugins/naqp_ssb.py
CHANGED
@@ -188,6 +188,12 @@ def cabrillo(self):
|
|
188
188
|
end="\r\n",
|
189
189
|
file=file_descriptor,
|
190
190
|
)
|
191
|
+
if self.station.get("Club", ""):
|
192
|
+
print(
|
193
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
194
|
+
end="\r\n",
|
195
|
+
file=file_descriptor,
|
196
|
+
)
|
191
197
|
print(
|
192
198
|
f"CALLSIGN: {self.station.get('Call','')}",
|
193
199
|
end="\r\n",
|
@@ -210,6 +210,12 @@ def cabrillo(self):
|
|
210
210
|
end="\r\n",
|
211
211
|
file=file_descriptor,
|
212
212
|
)
|
213
|
+
if self.station.get("Club", ""):
|
214
|
+
print(
|
215
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
216
|
+
end="\r\n",
|
217
|
+
file=file_descriptor,
|
218
|
+
)
|
213
219
|
print(
|
214
220
|
f"CALLSIGN: {self.station.get('Call','')}",
|
215
221
|
end="\r\n",
|
@@ -188,6 +188,12 @@ def cabrillo(self):
|
|
188
188
|
end="\r\n",
|
189
189
|
file=file_descriptor,
|
190
190
|
)
|
191
|
+
if self.station.get("Club", ""):
|
192
|
+
print(
|
193
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
194
|
+
end="\r\n",
|
195
|
+
file=file_descriptor,
|
196
|
+
)
|
191
197
|
print(
|
192
198
|
f"CALLSIGN: {self.station.get('Call','')}",
|
193
199
|
end="\r\n",
|
@@ -173,6 +173,12 @@ def cabrillo(self):
|
|
173
173
|
end="\r\n",
|
174
174
|
file=file_descriptor,
|
175
175
|
)
|
176
|
+
if self.station.get("Club", ""):
|
177
|
+
print(
|
178
|
+
f"CLUB: {self.station.get('Club', '').upper()}",
|
179
|
+
end="\r\n",
|
180
|
+
file=file_descriptor,
|
181
|
+
)
|
176
182
|
print(
|
177
183
|
f"CALLSIGN: {self.station.get('Call','')}",
|
178
184
|
end="\r\n",
|