Docs and TOC generator for Robot Framework resources and libs
Project description
Robot Framework LibTOC
What it does
This tool generates docs using Robot Framework Libdoc for an entire folder (or multiple folders) with Robot Framework resources/libs and creates a TOC (table of contents) file for them
Why use it
The Robot Framework Libdoc tool normally generates a HTML file for a single keyword library or a resource file. If you have several keyword libraries or resources, you just get several separate HTML files.
This tool collects separate keyword documentation files in one place and creates a TOC (table of contents) page
with links to these files.
The result is a folder with several static HTML pages which can be placed somewhere
in the intranet or uploaded as CI artifact - so everybody can easily access the keywords docs.
Here is the example screenshot
How it works
-
The tool goes through the specified folders with RF resources and it's direct subfolders
-
It looks for the config files named
.libtoc
which contain items you would like to create docs for:- Paths to resource/lib files in glob format
- RF libraries, installed or available in PYTHONPATH using the provided fully qualified name
Librariy import params (if necessary) like described in libdoc user guide Other libdoc CLI options (e.g. version or name of the output file) are not supported
- Paths to resource/lib files in glob format inside Python packages, loaded from the PYTHONPATH
See more about bundling RF resources in Python packages in RF User Guide
-
Then it generates the docs using
libdoc
- both for files paths, resolved from the glob patterns, and for the installed libraries. The created HTML files are placed in the libtoc output_dir - keeping the original subfolder structure of resources -
Finally it generates a TOC (Table of Contents) HTML page with links to all the generated HTML files. The navigation tree structure in the TOC repeats the folder tree structure.
Example of a .libtoc
config file
[paths]
# Use glob patterns
some-resources/**/*.robot
some-resources/**/*.resource
some-resources/**/*.py
[libs]
# Use RF library names with params - like for libdoc
SeleniumLibrary
Remote::http://10.0.0.42:8270
# Import a library from PYTHONPATH using fully qualified name
some-libs.mylib.mypy
# You can use environment variables in lib params
SomeLib::$some_env_var/somepath
[packages]
# Use package name in python path and glob patterns separated by :
some-package:resources/**/*.resource
some-package:libs/**/*.py
The config file must contain at least one of the sections -
[paths]
,[libs]
,[packages]
How to install it
System requirements
- Python >=3.7
- Robot Framework
Installation using pip
pip install robotframework-libtoc
How to use it
-
Create the
.libtoc
config files in the root of the resources folder and/or in direct subfolders where you need docs to be created. -
Run
libtoc
. The lastresources_dirs
parameter is mandatory, it takes any number of paths. Other params are optional:-d, --output_dir
--config_file
--toc_file
--toc_template
--homepage_template
-P, --pythonpath
Examples:
libtoc example_resources libtoc 'example_resources/SUT X' 'example_resources/SUT Y' libtoc --output_dir docs example_resources libtoc --output_dir docs --toc_file MY_SPECIAL_NAME_FOR_DOCS.html example_resources libtoc --toc_template MY_CUSTOM_TOC.html --homepage_template MY_CUSTOM_HOMEPAGE.html example_resources
-
Open the created file, e.g.
docs/keyword_docs.html
How to change the TOC and the homepage HTML templates
The default HTML template files are located in the python installation directory (usually something like <python_dir>/lib/site-packages/robotframework_libtoc
) and can be changed if necessary.
It's also possible to provide custom HTML template files using the --toc_template
and --homepage_template
options.
How to set the Python Path
There are two ways to extend the list of paths where the libraries are searched for:
- Using the
--pythonpath
option - Set the PYTHONPATH environment variable
See more in Robot Framework User Guide.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for robotframework_libtoc-1.4.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 874ef0aff06d240c45e71c38de8d4208fbd198c52674f5be56788b7cbb2803a7 |
|
MD5 | 7de3d577a4a9db4f24ae2222fc1bbeae |
|
BLAKE2b-256 | 91891663972db625d52d985fb9031cff9ece6976771c6452bcda9580e740efda |
Hashes for robotframework_libtoc-1.4.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c73c01c1bac9c33e39bffe4a497db1930b9b39c8cc288c6007a5b4ba8be6125e |
|
MD5 | 3b321638c12c66a34d4df29d6a7b7b98 |
|
BLAKE2b-256 | 1951df7ebc7e74645b70fa3c565f6ef59c36c2ab15d94c1fae8886d2a536f41b |