We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d9e172 commit c682199Copy full SHA for c682199
mozloc.py
@@ -36,6 +36,8 @@ def get_nmcli():
36
names=['ssid','macAddress','signalStrength'])
37
# %% optout
38
dat = dat[~dat['ssid'].str.endswith('_nomap')]
39
+# %% cleanup
40
+ dat['ssid'] = dat['ssid'].str.replace('nan','')
41
dat['macAddress'] = dat['macAddress'].str.replace(r'\\:',':')
42
# %% JSON
43
jdat = dat.to_json(orient='records')
0 commit comments