From 03feb89c84096c0ea1d6ae3a0634ae7b8b507e8f Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 18 Jan 2022 13:46:11 -0800 Subject: [PATCH] add module list info --- docs/readme.md | 2 ++ jc/__init__.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/docs/readme.md b/docs/readme.md index 437acbff..5bb61520 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -87,3 +87,5 @@ Alternatively, you can bypass the high-level API and call the parser modules dir '2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)', 'when': 'Fri Apr 16 16:13:00 PDT 2021', 'rcvd': 56, 'when_epoch': 1618614780, 'when_epoch_utc': None}] +To get a list of all available parser module names, use `jc.parser_mod_list()`. For a list of plugin parser module names only, use `jc.plugin_parser_mod_list()`. + diff --git a/jc/__init__.py b/jc/__init__.py index c7a5092a..2156056a 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -84,6 +84,8 @@ Alternatively, you can bypass the high-level API and call the parser modules dir 'class': 'IN', 'type': 'A', 'ttl': 29658, 'data': '93.184.216.34'}], 'query_time': 52, 'server': '2600:1700:bab0:d40::1#53(2600:1700:bab0:d40::1)', 'when': 'Fri Apr 16 16:13:00 PDT 2021', 'rcvd': 56, 'when_epoch': 1618614780, 'when_epoch_utc': None}] + +To get a list of all available parser module names, use `jc.parser_mod_list()`. For a list of plugin parser module names only, use `jc.plugin_parser_mod_list()`. """ from .lib import __version__, parse, parser_mod_list, plugin_parser_mod_list