diff --git a/docs/readme.md b/docs/readme.md index c87a0766..2c0d7e6d 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -11,12 +11,17 @@ and file-types to dictionaries and lists of dictionaries. ## Interactive Documentation +Using `jc` in your python programs: + >>> help('jc') >>> help('jc.lib') + >>> jc.get_help('parser_module_name') + +Developing `jc` parsers: + >>> help('jc.utils') >>> help('jc.streaming') >>> help('jc.parsers.universal') - >>> jc.get_help('parser_module_name') ## Online Documentation diff --git a/jc/__init__.py b/jc/__init__.py index bbf8ab97..fd297d59 100644 --- a/jc/__init__.py +++ b/jc/__init__.py @@ -7,12 +7,17 @@ and file-types to dictionaries and lists of dictionaries. ## Interactive Documentation +Using `jc` in your python programs: + >>> help('jc') >>> help('jc.lib') + >>> jc.get_help('parser_module_name') + +Developing `jc` parsers: + >>> help('jc.utils') >>> help('jc.streaming') >>> help('jc.parsers.universal') - >>> jc.get_help('parser_module_name') ## Online Documentation