Attached is a ZIP file containing two protocols that may be helpful to users learning Python or utilizing a Python module which is new to them.
The first protocol generates an HTML Report for a specified Python object type (e.g. pandas.DataFrame). The report contains a link for each of the methods available to that object type.
Hovering over a link shows the Python help text for the method in a tooltip. Clicking on a link launches the official documentation page for the method. NOTE: the base URL as well as some PilotScript (both provided by the user on the protocol-level parameters) is used to set the target for the official documentation link.
The second protocol shows how the first protocol could be used several times in a single protocol to generate a report with information for multiple Python object types.
The scripts used in the URLModificationScript protocol-level parameter may seem complicated at first: some comments are provided for assistance.
Craig Shepherd