Skip to content

Commit

Permalink
doc update
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyjonbrazil committed Feb 6, 2024
1 parent e754e88 commit a319ec8
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 23 deletions.
2 changes: 1 addition & 1 deletion docs/parsers/ini.md
Expand Up @@ -98,4 +98,4 @@ Compatibility: linux, darwin, cygwin, win32, aix, freebsd

Source: [`jc/parsers/ini.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ini.py)

Version 2.2 by Kelly Brazil (kellyjonbrazil@gmail.com)
Version 2.1 by Kelly Brazil (kellyjonbrazil@gmail.com)
2 changes: 1 addition & 1 deletion docs/parsers/ini_dup.md
Expand Up @@ -120,4 +120,4 @@ Compatibility: linux, darwin, cygwin, win32, aix, freebsd

Source: [`jc/parsers/ini_dup.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/ini_dup.py)

Version 1.3 by Kelly Brazil (kellyjonbrazil@gmail.com)
Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com)
2 changes: 1 addition & 1 deletion docs/parsers/url.md
Expand Up @@ -261,4 +261,4 @@ Source: [`jc/parsers/url.py`](https://github.com/kellyjonbrazil/jc/blob/master/j

This parser can be used with the `--slurp` command-line option.

Version 1.2 by Kelly Brazil (kellyjonbrazil@gmail.com)
Version 1.1 by Kelly Brazil (kellyjonbrazil@gmail.com)
2 changes: 1 addition & 1 deletion jc/parsers/ini.py
Expand Up @@ -75,7 +75,7 @@

class info():
"""Provides parser metadata (version, author, etc.)"""
version = '2.2'
version = '2.1'
description = 'INI file parser'
author = 'Kelly Brazil'
author_email = 'kellyjonbrazil@gmail.com'
Expand Down
2 changes: 1 addition & 1 deletion jc/parsers/ini_dup.py
Expand Up @@ -97,7 +97,7 @@

class info():
"""Provides parser metadata (version, author, etc.)"""
version = '1.3'
version = '1.2'
description = 'INI with duplicate key file parser'
author = 'Kelly Brazil'
author_email = 'kellyjonbrazil@gmail.com'
Expand Down
18 changes: 1 addition & 17 deletions jc/parsers/path_list.py
Expand Up @@ -80,22 +80,6 @@ class info():
__version__ = info.version


def _process(proc_data: List[Dict]) -> List[Dict]:
"""
Final processing to conform to the schema.
Parameters:
proc_data: (List of Dictionaries) raw structured data to process
Returns:
List of Dictionaries. Structured to conform to the schema.
"""
# no changes
return proc_data


def parse(data, raw=False, quiet=False):
"""
Main text parsing function
Expand Down Expand Up @@ -124,4 +108,4 @@ def parse(data, raw=False, quiet=False):
if jc.utils.has_data(data)
]

return raw_output if raw else _process(raw_output)
return raw_output
2 changes: 1 addition & 1 deletion jc/parsers/url.py
Expand Up @@ -240,7 +240,7 @@

class info():
"""Provides parser metadata (version, author, etc.)"""
version = '1.2'
version = '1.1'
description = 'URL string parser'
author = 'Kelly Brazil'
author_email = 'kellyjonbrazil@gmail.com'
Expand Down

0 comments on commit a319ec8

Please sign in to comment.