mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-19 00:17:51 +02:00
83 lines
2.0 KiB
Markdown
83 lines
2.0 KiB
Markdown
![]() |
[Home](https://kellyjonbrazil.github.io/jc/)
|
||
|
<a id="jc.parsers.chage"></a>
|
||
|
|
||
|
# jc.parsers.chage
|
||
|
|
||
|
jc - JSON Convert `chage --list` command output parser
|
||
|
|
||
|
Supports `chage -l <username>` or `chage --list <username>`
|
||
|
|
||
|
Usage (cli):
|
||
|
|
||
|
$ chage -l johndoe | jc --chage
|
||
|
|
||
|
or
|
||
|
|
||
|
$ jc chage -l johndoe
|
||
|
|
||
|
Usage (module):
|
||
|
|
||
|
import jc
|
||
|
result = jc.parse('chage', chage_command_output)
|
||
|
|
||
|
Schema:
|
||
|
|
||
|
{
|
||
|
"password_last_changed": string,
|
||
|
"password_expires": string,
|
||
|
"password_inactive": string,
|
||
|
"account_expires": string,
|
||
|
"min_days_between_password_change": integer,
|
||
|
"max_days_between_password_change": integer,
|
||
|
"warning_days_before_password_expires": integer
|
||
|
}
|
||
|
|
||
|
Examples:
|
||
|
|
||
|
$ chage | jc --chage -p
|
||
|
{
|
||
|
"password_last_changed": "never",
|
||
|
"password_expires": "never",
|
||
|
"password_inactive": "never",
|
||
|
"account_expires": "never",
|
||
|
"min_days_between_password_change": 0,
|
||
|
"max_days_between_password_change": 99999,
|
||
|
"warning_days_before_password_expires": 7
|
||
|
}
|
||
|
|
||
|
$ chage | jc --chage -p -r
|
||
|
{
|
||
|
"password_last_changed": "never",
|
||
|
"password_expires": "never",
|
||
|
"password_inactive": "never",
|
||
|
"account_expires": "never",
|
||
|
"min_days_between_password_change": "0",
|
||
|
"max_days_between_password_change": "99999",
|
||
|
"warning_days_before_password_expires": "7"
|
||
|
}
|
||
|
|
||
|
<a id="jc.parsers.chage.parse"></a>
|
||
|
|
||
|
### parse
|
||
|
|
||
|
```python
|
||
|
def parse(data: str, raw: bool = False, quiet: bool = False) -> Dict
|
||
|
```
|
||
|
|
||
|
Main text parsing function
|
||
|
|
||
|
Parameters:
|
||
|
|
||
|
data: (string) text data to parse
|
||
|
raw: (boolean) unprocessed output if True
|
||
|
quiet: (boolean) suppress warning messages if True
|
||
|
|
||
|
Returns:
|
||
|
|
||
|
Dictionary. Raw or processed structured data.
|
||
|
|
||
|
### Parser Information
|
||
|
Compatibility: linux
|
||
|
|
||
|
Version 1.0 by Kelly Brazil (kellyjonbrazil@gmail.com)
|