mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
minor fix for macOS binary
This commit is contained in:
@ -1,5 +1,8 @@
|
||||
jc changelog
|
||||
|
||||
20220121 v1.18.1
|
||||
- Minor fix for MacOS binary
|
||||
|
||||
20220121 v1.18.0
|
||||
- Add high-level parse API for built-in and plugin parsers
|
||||
- Add python module developer documentation
|
||||
|
@ -16,7 +16,7 @@ to dictionaries and lists of dictionaries.
|
||||
|
||||
## Online Documentation
|
||||
|
||||
### Latest:
|
||||
### Latest
|
||||
|
||||
https://github.com/kellyjonbrazil/jc/tree/master/docs
|
||||
|
||||
@ -28,7 +28,7 @@ Replace `{{full_version_number}}` - e.g. `1.17.7`:
|
||||
|
||||
Specific versions can also be selected by tag in the branch dropdown menu.
|
||||
|
||||
## Usage Example:
|
||||
## Usage Example
|
||||
|
||||
>>> import subprocess
|
||||
>>> import jc
|
||||
|
@ -14,7 +14,7 @@ to dictionaries and lists of dictionaries.
|
||||
|
||||
## Online Documentation
|
||||
|
||||
### Latest:
|
||||
### Latest
|
||||
|
||||
https://github.com/kellyjonbrazil/jc/tree/master/docs
|
||||
|
||||
@ -26,7 +26,7 @@ Replace `{{full_version_number}}` - e.g. `1.17.7`:
|
||||
|
||||
Specific versions can also be selected by tag in the branch dropdown menu.
|
||||
|
||||
## Usage Example:
|
||||
## Usage Example
|
||||
|
||||
>>> import subprocess
|
||||
>>> import jc
|
||||
|
@ -8,7 +8,7 @@ import re
|
||||
import importlib
|
||||
from jc import appdirs
|
||||
|
||||
__version__ = '1.18.0'
|
||||
__version__ = '1.18.1'
|
||||
|
||||
parsers = [
|
||||
'acpi',
|
||||
@ -112,7 +112,10 @@ if os.path.isdir(local_parsers_dir):
|
||||
local_parsers.append(plugin_name)
|
||||
if plugin_name not in parsers:
|
||||
parsers.append(plugin_name)
|
||||
del name
|
||||
try:
|
||||
del name
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
|
||||
def _cliname_to_modname(parser_cli_name):
|
||||
|
2
man/jc.1
2
man/jc.1
@ -1,4 +1,4 @@
|
||||
.TH jc 1 2022-01-21 1.18.0 "JSON CLI output utility"
|
||||
.TH jc 1 2022-01-21 1.18.1 "JSON CLI output utility"
|
||||
.SH NAME
|
||||
jc \- JSONifies the output of many CLI tools and file-types
|
||||
.SH SYNOPSIS
|
||||
|
Reference in New Issue
Block a user