1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-19 00:17:51 +02:00
Files
jc/docs/parsers/airport_s.md

149 lines
2.8 KiB
Markdown
Raw Normal View History

2020-07-30 16:20:24 -07:00
2020-03-10 21:51:02 -07:00
# jc.parsers.airport_s
2020-08-05 16:51:58 -07:00
jc - JSON CLI output utility `airport -s` command output parser
2020-08-05 15:08:42 -07:00
The `airport` program can be found at `/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport`.
2020-03-10 21:51:02 -07:00
2020-08-05 13:32:59 -07:00
Usage (cli):
2020-03-10 21:51:02 -07:00
2020-08-05 15:08:42 -07:00
$ airport -s | jc --airport-s
or
2020-03-10 21:51:02 -07:00
2020-08-05 15:08:42 -07:00
$ jc airport -s
2020-03-10 21:51:02 -07:00
2020-08-05 13:32:59 -07:00
Usage (module):
import jc.parsers.airport_s
result = jc.parsers.airport_s.parse(airport_s_command_output)
2020-03-10 21:51:02 -07:00
Compatibility:
'darwin'
Examples:
$ airport -s | jc --airport-s -p
[
{
"ssid": "DIRECT-4A-HP OfficeJet 3830",
"bssid": "00:67:eb:2a:a7:3b",
"rssi": -90,
"channel": "6",
"ht": true,
"cc": "--",
"security": [
"WPA2(PSK/AES/AES)"
]
},
{
"ssid": "Latitude38",
"bssid": "c0:ff:d5:d2:7a:f3",
"rssi": -85,
"channel": "11",
"ht": true,
"cc": "US",
"security": [
"WPA2(PSK/AES/AES)"
]
},
{
"ssid": "xfinitywifi",
"bssid": "6e:e3:0e:b8:45:99",
"rssi": -83,
"channel": "11",
"ht": true,
"cc": "US",
"security": [
"NONE"
]
},
...
]
$ airport -s | jc --airport -p -r
[
{
"ssid": "DIRECT-F3-HP ENVY 5660 series",
"bssid": "b0:5a:da:6f:0a:d4",
"rssi": "-93",
"channel": "1",
"ht": "Y",
"cc": "--",
"security": "WPA2(PSK/AES/AES)"
},
{
"ssid": "YouAreInfected-5",
"bssid": "5c:e3:0e:c2:85:da",
"rssi": "-85",
"channel": "36",
"ht": "Y",
"cc": "US",
"security": "WPA(PSK/AES,TKIP/TKIP) WPA2(PSK/AES,TKIP/TKIP)"
},
{
"ssid": "YuanFamily",
"bssid": "5c:e3:0e:b8:5f:9a",
"rssi": "-84",
"channel": "11",
"ht": "Y",
"cc": "US",
"security": "WPA(PSK/AES,TKIP/TKIP) WPA2(PSK/AES,TKIP/TKIP)"
},
...
]
2020-07-30 16:20:24 -07:00
2020-03-10 21:51:02 -07:00
## info
```python
2020-07-30 16:20:24 -07:00
info()
2020-03-10 21:51:02 -07:00
```
2020-07-30 16:20:24 -07:00
2020-03-10 21:51:02 -07:00
## process
```python
process(proc_data)
```
Final processing to conform to the schema.
Parameters:
2021-01-04 18:01:16 -08:00
proc_data: (List of Dictionaries) raw structured data to process
2020-03-10 21:51:02 -07:00
Returns:
2021-01-04 18:01:16 -08:00
List of Dictionaries. Structured data with the following schema:
2020-03-10 21:51:02 -07:00
[
{
"ssid": string,
"bssid": string,
"rssi": integer,
"channel": string,
"ht": boolean,
"cc": string,
"security": [
string,
]
}
]
2020-07-30 16:20:24 -07:00
2020-03-10 21:51:02 -07:00
## parse
```python
parse(data, raw=False, quiet=False)
```
Main text parsing function
Parameters:
data: (string) text data to parse
raw: (boolean) output preprocessed JSON if True
quiet: (boolean) suppress warning messages if True
Returns:
2021-01-04 18:01:16 -08:00
List of Dictionaries. Raw or processed structured data.
2020-03-10 21:51:02 -07:00