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

109 lines
2.4 KiB
Markdown
Raw Normal View History

[Home](https://kellyjonbrazil.github.io/jc/)
2020-07-30 16:20:24 -07:00
2020-03-10 20:35:52 -07:00
# jc.parsers.airport
2020-08-05 15:10:48 -07:00
jc - JSON CLI output utility `airport -I` 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 20:35:52 -07:00
2020-08-05 13:32:59 -07:00
Usage (cli):
2020-03-10 20:35:52 -07:00
2020-08-05 15:08:42 -07:00
$ airport -I | jc --airport
or
2020-08-05 15:08:42 -07:00
$ jc airport -I
2020-03-10 20:35:52 -07:00
2020-08-05 13:32:59 -07:00
Usage (module):
import jc.parsers.airport
result = jc.parsers.airport.parse(airport_command_output)
Schema:
{
"agrctlrssi": integer,
"agrextrssi": integer,
"agrctlnoise": integer,
"agrextnoise": integer,
"state": string,
"op_mode": string,
"lasttxrate": integer,
"maxrate": integer,
"lastassocstatus": integer,
"802_11_auth": string,
"link_auth": string,
"bssid": string,
"ssid": string,
"mcs": integer,
"channel": string
}
2020-03-10 20:35:52 -07:00
Examples:
$ airport -I | jc --airport -p
2020-03-10 20:35:52 -07:00
{
"agrctlrssi": -66,
"agrextrssi": 0,
"agrctlnoise": -90,
"agrextnoise": 0,
"state": "running",
"op_mode": "station",
"lasttxrate": 195,
"maxrate": 867,
"lastassocstatus": 0,
"802_11_auth": "open",
"link_auth": "wpa2-psk",
"bssid": "3c:37:86:15:ad:f9",
"ssid": "SnazzleDazzle",
"mcs": 0,
"channel": "48,80"
2020-03-10 20:35:52 -07:00
}
$ airport -I | jc --airport -p -r
2020-03-10 20:35:52 -07:00
{
"agrctlrssi": "-66",
"agrextrssi": "0",
"agrctlnoise": "-90",
"agrextnoise": "0",
"state": "running",
"op_mode": "station",
"lasttxrate": "195",
"maxrate": "867",
"lastassocstatus": "0",
"802_11_auth": "open",
"link_auth": "wpa2-psk",
"bssid": "3c:37:86:15:ad:f9",
"ssid": "SnazzleDazzle",
"mcs": "0",
"channel": "48,80"
2020-03-10 20:35:52 -07:00
}
2020-07-30 16:20:24 -07:00
2020-03-10 20:35:52 -07:00
## info
```python
2020-07-30 16:20:24 -07:00
info()
2020-03-10 20:35:52 -07:00
```
Provides parser metadata (version, author, etc.)
2020-07-30 16:20:24 -07:00
2020-03-10 20:35:52 -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:
Dictionary. Raw or processed structured data.
## Parser Information
Compatibility: darwin
Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com)