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
|
jc changelog
|
||||||
|
|
||||||
|
20220121 v1.18.1
|
||||||
|
- Minor fix for MacOS binary
|
||||||
|
|
||||||
20220121 v1.18.0
|
20220121 v1.18.0
|
||||||
- Add high-level parse API for built-in and plugin parsers
|
- Add high-level parse API for built-in and plugin parsers
|
||||||
- Add python module developer documentation
|
- Add python module developer documentation
|
||||||
|
@ -16,7 +16,7 @@ to dictionaries and lists of dictionaries.
|
|||||||
|
|
||||||
## Online Documentation
|
## Online Documentation
|
||||||
|
|
||||||
### Latest:
|
### Latest
|
||||||
|
|
||||||
https://github.com/kellyjonbrazil/jc/tree/master/docs
|
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.
|
Specific versions can also be selected by tag in the branch dropdown menu.
|
||||||
|
|
||||||
## Usage Example:
|
## Usage Example
|
||||||
|
|
||||||
>>> import subprocess
|
>>> import subprocess
|
||||||
>>> import jc
|
>>> import jc
|
||||||
|
@ -14,7 +14,7 @@ to dictionaries and lists of dictionaries.
|
|||||||
|
|
||||||
## Online Documentation
|
## Online Documentation
|
||||||
|
|
||||||
### Latest:
|
### Latest
|
||||||
|
|
||||||
https://github.com/kellyjonbrazil/jc/tree/master/docs
|
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.
|
Specific versions can also be selected by tag in the branch dropdown menu.
|
||||||
|
|
||||||
## Usage Example:
|
## Usage Example
|
||||||
|
|
||||||
>>> import subprocess
|
>>> import subprocess
|
||||||
>>> import jc
|
>>> import jc
|
||||||
|
@ -8,7 +8,7 @@ import re
|
|||||||
import importlib
|
import importlib
|
||||||
from jc import appdirs
|
from jc import appdirs
|
||||||
|
|
||||||
__version__ = '1.18.0'
|
__version__ = '1.18.1'
|
||||||
|
|
||||||
parsers = [
|
parsers = [
|
||||||
'acpi',
|
'acpi',
|
||||||
@ -112,7 +112,10 @@ if os.path.isdir(local_parsers_dir):
|
|||||||
local_parsers.append(plugin_name)
|
local_parsers.append(plugin_name)
|
||||||
if plugin_name not in parsers:
|
if plugin_name not in parsers:
|
||||||
parsers.append(plugin_name)
|
parsers.append(plugin_name)
|
||||||
|
try:
|
||||||
del name
|
del name
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
def _cliname_to_modname(parser_cli_name):
|
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
|
.SH NAME
|
||||||
jc \- JSONifies the output of many CLI tools and file-types
|
jc \- JSONifies the output of many CLI tools and file-types
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
2
setup.py
2
setup.py
@ -5,7 +5,7 @@ with open('README.md', 'r') as f:
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name='jc',
|
name='jc',
|
||||||
version='1.18.0',
|
version='1.18.1',
|
||||||
author='Kelly Brazil',
|
author='Kelly Brazil',
|
||||||
author_email='kellyjonbrazil@gmail.com',
|
author_email='kellyjonbrazil@gmail.com',
|
||||||
description='Converts the output of popular command-line tools and file-types to JSON.',
|
description='Converts the output of popular command-line tools and file-types to JSON.',
|
||||||
|
Reference in New Issue
Block a user