mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-19 00:17:51 +02:00
formatting
This commit is contained in:
@ -38,19 +38,19 @@ Available Functions:
|
|||||||
|
|
||||||
* Use `help(jc.lib)` for details
|
* Use `help(jc.lib)` for details
|
||||||
|
|
||||||
parse(parser_module_name: str, data: str | iterable)
|
parse(parser_module_name: str, data: str | iterable)
|
||||||
High-level API to easily access the parser. This API will find both
|
High-level API to easily access the parser. This API will find both
|
||||||
built-in parsers and local plugin parsers.
|
built-in parsers and local plugin parsers.
|
||||||
|
|
||||||
get_help(parser_module_name: str)
|
get_help(parser_module_name: str)
|
||||||
Convenience function to display the help screen for a parser using its
|
Convenience function to display the help screen for a parser using its
|
||||||
module name.
|
module name.
|
||||||
|
|
||||||
parser_mod_list()
|
parser_mod_list()
|
||||||
Get a list of all available parser module names to be used in parse()
|
Get a list of all available parser module names to be used in parse()
|
||||||
and get_help().
|
and get_help().
|
||||||
|
|
||||||
plugin_parser_mod_list()
|
plugin_parser_mod_list()
|
||||||
Get a list of plugin parser module names. This list is a subset of
|
Get a list of plugin parser module names. This list is a subset of
|
||||||
parser_mod_list().
|
parser_mod_list().
|
||||||
|
|
||||||
|
@ -36,21 +36,21 @@ Available Functions:
|
|||||||
|
|
||||||
* Use `help(jc.lib)` for details
|
* Use `help(jc.lib)` for details
|
||||||
|
|
||||||
parse(parser_module_name: str, data: str | iterable)
|
parse(parser_module_name: str, data: str | iterable)
|
||||||
High-level API to easily access the parser. This API will find both
|
High-level API to easily access the parser. This API will find both
|
||||||
built-in parsers and local plugin parsers.
|
built-in parsers and local plugin parsers.
|
||||||
|
|
||||||
get_help(parser_module_name: str)
|
get_help(parser_module_name: str)
|
||||||
Convenience function to display the help screen for a parser using its
|
Convenience function to display the help screen for a parser using its
|
||||||
module name.
|
module name.
|
||||||
|
|
||||||
parser_mod_list()
|
parser_mod_list()
|
||||||
Get a list of all available parser module names to be used in parse()
|
Get a list of all available parser module names to be used in parse()
|
||||||
and get_help().
|
and get_help().
|
||||||
|
|
||||||
plugin_parser_mod_list()
|
plugin_parser_mod_list()
|
||||||
Get a list of plugin parser module names. This list is a subset of
|
Get a list of plugin parser module names. This list is a subset of
|
||||||
parser_mod_list().
|
parser_mod_list().
|
||||||
"""
|
"""
|
||||||
from .lib import (__version__, parse, parser_mod_list,
|
from .lib import (__version__, parse, parser_mod_list,
|
||||||
plugin_parser_mod_list, get_help)
|
plugin_parser_mod_list, get_help)
|
||||||
|
Reference in New Issue
Block a user